diff --git a/examples/Notebook.ipynb b/examples/Notebook.ipynb index d9c6488f..953143d8 100644 --- a/examples/Notebook.ipynb +++ b/examples/Notebook.ipynb @@ -187,6 +187,86 @@ "\n", "doc" ] + }, + { + "cell_type": "markdown", + "id": "679bd8dd-9bbf-4ecf-a676-32e8137992d1", + "metadata": {}, + "source": [ + "#### Add annotations and modify shape color" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "245baeb7-5df6-45a3-bd75-aa4a33258fce", + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.jupyter.ywidget-view+json": { + "model_id": "d5fc57c284414950ab29413d60e1a50a", + "version_major": 2, + "version_minor": 0 + }, + "text/plain": [ + "" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from OCC.Core.gp import gp_Pnt\n", + "\n", + "from jupytercad import CadDocument\n", + "\n", + "doc = CadDocument('test.jcad')\n", + "doc" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "cf45ee1f-76ee-4973-818f-167ce82ea384", + "metadata": {}, + "outputs": [], + "source": [ + "user= {'color':'#0000ff30', 'initials': 'BO','display_name': 'Bot'}\n", + "id = doc.add_annotation('box','Added from Python API', user=user)" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "08764533-d8f8-494f-8a59-9dd5360ba17e", + "metadata": {}, + "outputs": [], + "source": [ + "doc.remove_annotation(id)" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "id": "3afc5f3c-cc33-4c8a-8904-98726a3ae118", + "metadata": {}, + "outputs": [], + "source": [ + "doc.set_color('box2', [0.5,0.4,0.2])" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "id": "855133ee-8cd2-432b-933a-d72f1a9f6c7c", + "metadata": {}, + "outputs": [], + "source": [ + "doc.set_color('box2',None)" + ] } ], "metadata": { @@ -205,7 +285,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.10.11" + "version": "3.10.10" } }, "nbformat": 4, diff --git a/jupytercad/fcstd_ydoc.py b/jupytercad/fcstd_ydoc.py index c60b724e..b5b3eebf 100644 --- a/jupytercad/fcstd_ydoc.py +++ b/jupytercad/fcstd_ydoc.py @@ -60,7 +60,7 @@ def observe(self, callback: Callable[[str, Any], None]): self._subscriptions[self._yobjects] = self._yobjects.observe_deep( partial(callback, "objects") ) - self._subscriptions[self._yoptions] = self._yoptions.observe( + self._subscriptions[self._yoptions] = self._yoptions.observe_deep( partial(callback, "options") ) self._subscriptions[self._ymeta] = self._ymeta.observe_deep( diff --git a/jupytercad/jcad_ydoc.py b/jupytercad/jcad_ydoc.py index 09824ae7..bf93dc71 100644 --- a/jupytercad/jcad_ydoc.py +++ b/jupytercad/jcad_ydoc.py @@ -61,9 +61,9 @@ def observe(self, callback: Callable[[str, Any], None]): self._subscriptions[self._yobjects] = self._yobjects.observe_deep( partial(callback, "objects") ) - self._subscriptions[self._yoptions] = self._yoptions.observe( + self._subscriptions[self._yoptions] = self._yoptions.observe_deep( partial(callback, "options") ) - self._subscriptions[self._ymeta] = self._ymeta.observe( + self._subscriptions[self._ymeta] = self._ymeta.observe_deep( partial(callback, "meta") ) diff --git a/jupytercad/notebook/cad_document.py b/jupytercad/notebook/cad_document.py index 347aef5e..828323c9 100644 --- a/jupytercad/notebook/cad_document.py +++ b/jupytercad/notebook/cad_document.py @@ -1,4 +1,5 @@ from __future__ import annotations +from copy import deepcopy import json import logging @@ -12,6 +13,7 @@ from jupytercad.freecad.loader import fc from jupytercad.notebook.objects._schema.any import IAny +from uuid import uuid4 from .objects import ( IBox, @@ -52,6 +54,8 @@ def __init__(self, path: Optional[str] = None): self.ydoc = ydoc self._objects_array = self.ydoc.get_array("objects") + self._metadata = self.ydoc.get_map("metadata") + self._options = self.ydoc.get_map("options") @property def objects(self) -> List[str]: @@ -114,6 +118,86 @@ def add_object(self, new_object: "PythonJcadObject") -> CadDocument: logger.error(f"Object {new_object.name} already exists") return self + def add_annotation( + self, + parent: str, + message: str, + *, + position: Optional[List[float]] = None, + user: Optional[Dict] = None, + ) -> Optional[str]: + """ + Add an annotation to the document. + + :param parent: The object which holds the annotation. + :param message: The first messages in the annotation. + :param position: The position of the annotation. + :param user: The user who create this annotation. + :return: The id of the annotation if it is created. + """ + new_id = f"annotation_${uuid4()}" + parent_obj = self.get_object(parent) + if parent_obj is None: + raise ValueError("Parent object not found") + + if position is None: + position = ( + parent_obj.metadata.centerOfMass + if parent_obj.metadata is not None + else [0, 0, 0] + ) + contents = [{"user": user, "value": message}] + if self._metadata is not None: + with self.ydoc.begin_transaction() as t: + self._metadata.set( + t, + new_id, + json.dumps( + { + "position": position, + "contents": contents, + "parent": parent, + } + ), + ) + return new_id + + def remove_annotation(self, annotation_id: str) -> None: + """ + Remove an annotation from the document. + + :param annotation_id: The id of the annotation + """ + if self._metadata is not None: + with self.ydoc.begin_transaction() as t: + self._metadata.pop(t, annotation_id, None) + + def set_color(self, object_name: str, color: Optional[List]) -> None: + """ + Set object color. + + :param object_name: Object name. + :param color: Color value, set it to `None` to remove color. + """ + if self._options and self.check_exist(object_name): + current_gui = self._options.get("guidata") + new_gui = None + if current_gui is not None: + new_gui = deepcopy(current_gui) + current_data: Dict = new_gui.get(object_name, {}) + if color is not None: + current_data["color"] = color + else: + current_data.pop("color", None) + + new_gui[object_name] = current_data + else: + if color is not None: + new_gui = {object_name: {"color": color}} + if new_gui is not None: + with self.ydoc.begin_transaction() as t: + self._options.set(t, "guidata", new_gui) + def add_occ_shape( self, shape, diff --git a/packages/jupytercad-extension/src/mainview.tsx b/packages/jupytercad-extension/src/mainview.tsx index 0496a284..c1434ea5 100644 --- a/packages/jupytercad-extension/src/mainview.tsx +++ b/packages/jupytercad-extension/src/mainview.tsx @@ -547,7 +547,6 @@ export class MainView extends React.Component { } const guidata = this._model.sharedModel.getOption('guidata'); - const selectedNames = this._selectedMeshes.map(sel => sel.name); this._selectedMeshes = []; @@ -932,15 +931,20 @@ export class MainView extends React.Component { if (guidata) { for (const objName in guidata) { + const obj = this._meshGroup?.getObjectByName(objName) as + | BasicMesh + | undefined; + if (!obj) { + continue; + } if ( Object.prototype.hasOwnProperty.call(guidata[objName], 'visibility') ) { - const obj = this._meshGroup?.getObjectByName(objName); const explodedLineHelper = this._explodedViewLinesHelperGroup?.getObjectByName(objName); const objGuiData = guidata[objName]; - if (obj && objGuiData) { + if (objGuiData) { obj.visible = objGuiData['visibility']; if (explodedLineHelper) { @@ -948,6 +952,13 @@ export class MainView extends React.Component { } } } + if ('color' in guidata[objName]) { + const rgba = guidata[objName]['color'] as number[]; + const color = new THREE.Color(rgba[0], rgba[1], rgba[2]); + obj.material.color = color; + } else { + obj.material.color = DEFAULT_MESH_COLOR; + } } } } diff --git a/yarn.lock b/yarn.lock index 0b0166b8..85d294d7 100644 --- a/yarn.lock +++ b/yarn.lock @@ -29,167 +29,169 @@ __metadata: languageName: node linkType: hard -"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.21.4": - version: 7.21.4 - resolution: "@babel/code-frame@npm:7.21.4" +"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/code-frame@npm:7.22.5" dependencies: - "@babel/highlight": ^7.18.6 - checksum: e5390e6ec1ac58dcef01d4f18eaf1fd2f1325528661ff6d4a5de8979588b9f5a8e852a54a91b923846f7a5c681b217f0a45c2524eb9560553160cd963b7d592c + "@babel/highlight": ^7.22.5 + checksum: cfe804f518f53faaf9a1d3e0f9f74127ab9a004912c3a16fda07fb6a633393ecb9918a053cb71804204c1b7ec3d49e1699604715e2cfb0c9f7bc4933d324ebb6 languageName: node linkType: hard -"@babel/generator@npm:^7.21.5": - version: 7.21.9 - resolution: "@babel/generator@npm:7.21.9" +"@babel/generator@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/generator@npm:7.22.5" dependencies: - "@babel/types": ^7.21.5 + "@babel/types": ^7.22.5 "@jridgewell/gen-mapping": ^0.3.2 "@jridgewell/trace-mapping": ^0.3.17 jsesc: ^2.5.1 - checksum: 5bd10334ebdf7f2a30eb4a1fd99d369a57703aa2234527784449187512c254a1174fa739c9d4c31bcbb6018732012a0664bec7c314f12b5ec2458737ddbb01c7 + checksum: efa64da70ca88fe69f05520cf5feed6eba6d30a85d32237671488cc355fdc379fe2c3246382a861d49574c4c2f82a317584f8811e95eb024e365faff3232b49d languageName: node linkType: hard "@babel/helper-annotate-as-pure@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/helper-annotate-as-pure@npm:7.18.6" + version: 7.22.5 + resolution: "@babel/helper-annotate-as-pure@npm:7.22.5" dependencies: - "@babel/types": ^7.18.6 - checksum: 88ccd15ced475ef2243fdd3b2916a29ea54c5db3cd0cfabf9d1d29ff6e63b7f7cd1c27264137d7a40ac2e978b9b9a542c332e78f40eb72abe737a7400788fc1b + "@babel/types": ^7.22.5 + checksum: 53da330f1835c46f26b7bf4da31f7a496dee9fd8696cca12366b94ba19d97421ce519a74a837f687749318f94d1a37f8d1abcbf35e8ed22c32d16373b2f6198d languageName: node linkType: hard -"@babel/helper-environment-visitor@npm:^7.21.5": - version: 7.21.5 - resolution: "@babel/helper-environment-visitor@npm:7.21.5" - checksum: e436af7b62956e919066448013a3f7e2cd0b51010c26c50f790124dcd350be81d5597b4e6ed0a4a42d098a27de1e38561cd7998a116a42e7899161192deac9a6 +"@babel/helper-environment-visitor@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-environment-visitor@npm:7.22.5" + checksum: 248532077d732a34cd0844eb7b078ff917c3a8ec81a7f133593f71a860a582f05b60f818dc5049c2212e5baa12289c27889a4b81d56ef409b4863db49646c4b1 languageName: node linkType: hard -"@babel/helper-function-name@npm:^7.21.0": - version: 7.21.0 - resolution: "@babel/helper-function-name@npm:7.21.0" +"@babel/helper-function-name@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-function-name@npm:7.22.5" dependencies: - "@babel/template": ^7.20.7 - "@babel/types": ^7.21.0 - checksum: d63e63c3e0e3e8b3138fa47b0cd321148a300ef12b8ee951196994dcd2a492cc708aeda94c2c53759a5c9177fffaac0fd8778791286746f72a000976968daf4e + "@babel/template": ^7.22.5 + "@babel/types": ^7.22.5 + checksum: 6b1f6ce1b1f4e513bf2c8385a557ea0dd7fa37971b9002ad19268ca4384bbe90c09681fe4c076013f33deabc63a53b341ed91e792de741b4b35e01c00238177a languageName: node linkType: hard -"@babel/helper-hoist-variables@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/helper-hoist-variables@npm:7.18.6" +"@babel/helper-hoist-variables@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-hoist-variables@npm:7.22.5" dependencies: - "@babel/types": ^7.18.6 - checksum: fd9c35bb435fda802bf9ff7b6f2df06308a21277c6dec2120a35b09f9de68f68a33972e2c15505c1a1a04b36ec64c9ace97d4a9e26d6097b76b4396b7c5fa20f + "@babel/types": ^7.22.5 + checksum: 394ca191b4ac908a76e7c50ab52102669efe3a1c277033e49467913c7ed6f7c64d7eacbeabf3bed39ea1f41731e22993f763b1edce0f74ff8563fd1f380d92cc languageName: node linkType: hard "@babel/helper-module-imports@npm:^7.0.0, @babel/helper-module-imports@npm:^7.21.4": - version: 7.21.4 - resolution: "@babel/helper-module-imports@npm:7.21.4" + version: 7.22.5 + resolution: "@babel/helper-module-imports@npm:7.22.5" dependencies: - "@babel/types": ^7.21.4 - checksum: bd330a2edaafeb281fbcd9357652f8d2666502567c0aad71db926e8499c773c9ea9c10dfaae30122452940326d90c8caff5c649ed8e1bf15b23f858758d3abc6 + "@babel/types": ^7.22.5 + checksum: 9ac2b0404fa38b80bdf2653fbeaf8e8a43ccb41bd505f9741d820ed95d3c4e037c62a1bcdcb6c9527d7798d2e595924c4d025daed73283badc180ada2c9c49ad languageName: node linkType: hard -"@babel/helper-split-export-declaration@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/helper-split-export-declaration@npm:7.18.6" +"@babel/helper-split-export-declaration@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-split-export-declaration@npm:7.22.5" dependencies: - "@babel/types": ^7.18.6 - checksum: c6d3dede53878f6be1d869e03e9ffbbb36f4897c7cc1527dc96c56d127d834ffe4520a6f7e467f5b6f3c2843ea0e81a7819d66ae02f707f6ac057f3d57943a2b + "@babel/types": ^7.22.5 + checksum: d10e05a02f49c1f7c578cea63d2ac55356501bbf58856d97ac9bfde4957faee21ae97c7f566aa309e38a256eef58b58e5b670a7f568b362c00e93dfffe072650 languageName: node linkType: hard -"@babel/helper-string-parser@npm:^7.21.5": - version: 7.21.5 - resolution: "@babel/helper-string-parser@npm:7.21.5" - checksum: 36c0ded452f3858e67634b81960d4bde1d1cd2a56b82f4ba2926e97864816021c885f111a7cf81de88a0ed025f49d84a393256700e9acbca2d99462d648705d8 +"@babel/helper-string-parser@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-string-parser@npm:7.22.5" + checksum: 836851ca5ec813077bbb303acc992d75a360267aa3b5de7134d220411c852a6f17de7c0d0b8c8dcc0f567f67874c00f4528672b2a4f1bc978a3ada64c8c78467 languageName: node linkType: hard -"@babel/helper-validator-identifier@npm:^7.18.6, @babel/helper-validator-identifier@npm:^7.19.1": - version: 7.19.1 - resolution: "@babel/helper-validator-identifier@npm:7.19.1" - checksum: 0eca5e86a729162af569b46c6c41a63e18b43dbe09fda1d2a3c8924f7d617116af39cac5e4cd5d431bb760b4dca3c0970e0c444789b1db42bcf1fa41fbad0a3a +"@babel/helper-validator-identifier@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-validator-identifier@npm:7.22.5" + checksum: 7f0f30113474a28298c12161763b49de5018732290ca4de13cdaefd4fd0d635a6fe3f6686c37a02905fb1e64f21a5ee2b55140cf7b070e729f1bd66866506aea languageName: node linkType: hard -"@babel/highlight@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/highlight@npm:7.18.6" +"@babel/highlight@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/highlight@npm:7.22.5" dependencies: - "@babel/helper-validator-identifier": ^7.18.6 + "@babel/helper-validator-identifier": ^7.22.5 chalk: ^2.0.0 js-tokens: ^4.0.0 - checksum: 92d8ee61549de5ff5120e945e774728e5ccd57fd3b2ed6eace020ec744823d4a98e242be1453d21764a30a14769ecd62170fba28539b211799bbaf232bbb2789 + checksum: f61ae6de6ee0ea8d9b5bcf2a532faec5ab0a1dc0f7c640e5047fc61630a0edb88b18d8c92eb06566d30da7a27db841aca11820ecd3ebe9ce514c9350fbed39c4 languageName: node linkType: hard -"@babel/parser@npm:^7.21.5, @babel/parser@npm:^7.21.9": - version: 7.21.9 - resolution: "@babel/parser@npm:7.21.9" +"@babel/parser@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/parser@npm:7.22.5" bin: parser: ./bin/babel-parser.js - checksum: 985ccc311eb286a320331fd21ff54d94935df76e081abdb304cd4591ea2051a6c799c6b0d8e26d09a9dd041797d9a91ebadeb0c50699d0101bd39fc565082d5c + checksum: 470ebba516417ce8683b36e2eddd56dcfecb32c54b9bb507e28eb76b30d1c3e618fd0cfeee1f64d8357c2254514e1a19e32885cfb4e73149f4ae875436a6d59c languageName: node linkType: hard "@babel/runtime@npm:^7.1.2": - version: 7.21.5 - resolution: "@babel/runtime@npm:7.21.5" + version: 7.22.5 + resolution: "@babel/runtime@npm:7.22.5" dependencies: regenerator-runtime: ^0.13.11 - checksum: 358f2779d3187f5c67ad302e8f8d435412925d0b991d133c7d4a7b1ddd5a3fda1b6f34537cb64628dfd96a27ae46df105bed3895b8d754b88cacdded8d1129dd + checksum: 12a50b7de2531beef38840d17af50c55a094253697600cee255311222390c68eed704829308d4fd305e1b3dfbce113272e428e9d9d45b1730e0fede997eaceb1 languageName: node linkType: hard -"@babel/template@npm:^7.20.7": - version: 7.21.9 - resolution: "@babel/template@npm:7.21.9" +"@babel/template@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/template@npm:7.22.5" dependencies: - "@babel/code-frame": ^7.21.4 - "@babel/parser": ^7.21.9 - "@babel/types": ^7.21.5 - checksum: 6ec2c60d4d53b2a9230ab82c399ba6525df87e9a4e01e4b111e071cbad283b1362e7c99a1bc50027073f44f2de36a495a89c27112c4e7efe7ef9c8d9c84de2ec + "@babel/code-frame": ^7.22.5 + "@babel/parser": ^7.22.5 + "@babel/types": ^7.22.5 + checksum: c5746410164039aca61829cdb42e9a55410f43cace6f51ca443313f3d0bdfa9a5a330d0b0df73dc17ef885c72104234ae05efede37c1cc8a72dc9f93425977a3 languageName: node linkType: hard "@babel/traverse@npm:^7.4.5": - version: 7.21.5 - resolution: "@babel/traverse@npm:7.21.5" - dependencies: - "@babel/code-frame": ^7.21.4 - "@babel/generator": ^7.21.5 - "@babel/helper-environment-visitor": ^7.21.5 - "@babel/helper-function-name": ^7.21.0 - "@babel/helper-hoist-variables": ^7.18.6 - "@babel/helper-split-export-declaration": ^7.18.6 - "@babel/parser": ^7.21.5 - "@babel/types": ^7.21.5 + version: 7.22.5 + resolution: "@babel/traverse@npm:7.22.5" + dependencies: + "@babel/code-frame": ^7.22.5 + "@babel/generator": ^7.22.5 + "@babel/helper-environment-visitor": ^7.22.5 + "@babel/helper-function-name": ^7.22.5 + "@babel/helper-hoist-variables": ^7.22.5 + "@babel/helper-split-export-declaration": ^7.22.5 + "@babel/parser": ^7.22.5 + "@babel/types": ^7.22.5 debug: ^4.1.0 globals: ^11.1.0 - checksum: b403733fa7d858f0c8e224f0434a6ade641bc469a4f92975363391e796629d5bf53e544761dfe85039aab92d5389ebe7721edb309d7a5bb7df2bf74f37bf9f47 + checksum: 560931422dc1761f2df723778dcb4e51ce0d02e560cf2caa49822921578f49189a5a7d053b78a32dca33e59be886a6b2200a6e24d4ae9b5086ca0ba803815694 languageName: node linkType: hard -"@babel/types@npm:^7.18.6, @babel/types@npm:^7.21.0, @babel/types@npm:^7.21.4, @babel/types@npm:^7.21.5, @babel/types@npm:^7.8.3": - version: 7.21.5 - resolution: "@babel/types@npm:7.21.5" +"@babel/types@npm:^7.22.5, @babel/types@npm:^7.8.3": + version: 7.22.5 + resolution: "@babel/types@npm:7.22.5" dependencies: - "@babel/helper-string-parser": ^7.21.5 - "@babel/helper-validator-identifier": ^7.19.1 + "@babel/helper-string-parser": ^7.22.5 + "@babel/helper-validator-identifier": ^7.22.5 to-fast-properties: ^2.0.0 - checksum: 43242a99c612d13285ee4af46cc0f1066bcb6ffd38307daef7a76e8c70f36cfc3255eb9e75c8e768b40e761176c313aec4d5c0b9d97a21e494d49d5fd123a9f7 + checksum: c13a9c1dc7d2d1a241a2f8363540cb9af1d66e978e8984b400a20c4f38ba38ca29f06e26a0f2d49a70bad9e57615dac09c35accfddf1bb90d23cd3e0a0bab892 languageName: node linkType: hard "@blueprintjs/colors@npm:^4.0.0-alpha.3": - version: 4.1.23 - resolution: "@blueprintjs/colors@npm:4.1.23" - checksum: 1844d603191b5cdaa58ac48176fe096755651a0f4f37ef0a1c6631da9bc46f19e92f7398bac30fd34ee3ac96d884a83983a2a1305584bfd24b76b1957ec0a9d9 + version: 4.2.1 + resolution: "@blueprintjs/colors@npm:4.2.1" + dependencies: + tslib: ~2.5.0 + checksum: d8073d0146f1d9b99e1d9dbbe4ab5b57d41c41f7a70da287b4dd6f02781df52b772e66348b79a3a6c9a7d9ed311d93934d2a4413da04ebfd215cfae143bed446 languageName: node linkType: hard @@ -296,8 +298,8 @@ __metadata: linkType: hard "@codemirror/lang-html@npm:^6.0.0, @codemirror/lang-html@npm:^6.4.3": - version: 6.4.3 - resolution: "@codemirror/lang-html@npm:6.4.3" + version: 6.4.4 + resolution: "@codemirror/lang-html@npm:6.4.4" dependencies: "@codemirror/autocomplete": ^6.0.0 "@codemirror/lang-css": ^6.0.0 @@ -308,7 +310,7 @@ __metadata: "@lezer/common": ^1.0.0 "@lezer/css": ^1.1.0 "@lezer/html": ^1.3.0 - checksum: 6177d19147580964ecd6910ae951201929a96e63f4f0e624c3138e2805fa87ec6d6d952a3a888c5a52af78b6dd6d04d7d8c76c6a9cd65b1921dc467b5dbaea72 + checksum: 99693fee5392c85b0974c4cfd015aa9ba6e015baf8abbddfbb1f5f8c4801e78c3d053d8b19e1dafe3d913b2902e97ed6c95d8a237cd496e8fbcc1548cebe6485 languageName: node linkType: hard @@ -323,8 +325,8 @@ __metadata: linkType: hard "@codemirror/lang-javascript@npm:^6.0.0, @codemirror/lang-javascript@npm:^6.1.7": - version: 6.1.8 - resolution: "@codemirror/lang-javascript@npm:6.1.8" + version: 6.1.9 + resolution: "@codemirror/lang-javascript@npm:6.1.9" dependencies: "@codemirror/autocomplete": ^6.0.0 "@codemirror/language": ^6.6.0 @@ -333,7 +335,7 @@ __metadata: "@codemirror/view": ^6.0.0 "@lezer/common": ^1.0.0 "@lezer/javascript": ^1.0.0 - checksum: 58ccd1c96db52edc95015b3fc77021540c18b4b87ce2c9426402a53993a67d7946647aba7198223dc51a56ec55379603a6d986fe32332d85cb3d8768c92a562e + checksum: 6c79b51c61d37b3f4dde6312df02183045c31f055e5cf8550b497f39798b823b4e380a641a2cfc97f3f26fd4e89194258d8ef741c42acd72b3f2e18257b427a5 languageName: node linkType: hard @@ -375,13 +377,13 @@ __metadata: linkType: hard "@codemirror/lang-python@npm:^6.1.2": - version: 6.1.2 - resolution: "@codemirror/lang-python@npm:6.1.2" + version: 6.1.3 + resolution: "@codemirror/lang-python@npm:6.1.3" dependencies: "@codemirror/autocomplete": ^6.3.2 - "@codemirror/language": ^6.0.0 - "@lezer/python": ^1.0.0 - checksum: e822a1236fb3c2773e1889d4a24f8f2f7fb45ab8cf6e0521d311508a3eda19c4dcf4e2f943766b93545e673f3f0336725418e0bb48b3d9fb6a942339d164cfa5 + "@codemirror/language": ^6.8.0 + "@lezer/python": ^1.1.4 + checksum: 65a0276a4503e4e3b70dd28d1c93ef472632b6d2c4bf3ae92d305d14ee8cf60b0bbbf62d5ceb51294de9598d9e2d42eafcde26f317ee7b90d0a11dfa863c1d1a languageName: node linkType: hard @@ -432,9 +434,9 @@ __metadata: languageName: node linkType: hard -"@codemirror/language@npm:^6.0.0, @codemirror/language@npm:^6.3.0, @codemirror/language@npm:^6.4.0, @codemirror/language@npm:^6.6.0": - version: 6.7.0 - resolution: "@codemirror/language@npm:6.7.0" +"@codemirror/language@npm:^6.0.0, @codemirror/language@npm:^6.3.0, @codemirror/language@npm:^6.4.0, @codemirror/language@npm:^6.6.0, @codemirror/language@npm:^6.8.0": + version: 6.8.0 + resolution: "@codemirror/language@npm:6.8.0" dependencies: "@codemirror/state": ^6.0.0 "@codemirror/view": ^6.0.0 @@ -442,7 +444,7 @@ __metadata: "@lezer/highlight": ^1.0.0 "@lezer/lr": ^1.0.0 style-mod: ^4.0.0 - checksum: 673905e9eb80f039a5e6c59a8aeca217e124a9a03734848043192aeff9e5b3a82f150559f7bd637ee197c4b2171eb5b04e757d717922128ea4fecca1ac6ecac4 + checksum: 64408d996641931fa4c6b892e17ee1fdaee0f63d3d84c019a6ea7b1e6d1c774f92357b95c2ebaed60545062b795b72d0a058c03578b2bf4023c87726e97b5d2f languageName: node linkType: hard @@ -456,24 +458,24 @@ __metadata: linkType: hard "@codemirror/lint@npm:^6.0.0": - version: 6.2.1 - resolution: "@codemirror/lint@npm:6.2.1" + version: 6.2.2 + resolution: "@codemirror/lint@npm:6.2.2" dependencies: "@codemirror/state": ^6.0.0 "@codemirror/view": ^6.0.0 crelt: ^1.0.5 - checksum: 0e383c6b8b0fc463f90f8ebdc71628ba39cffbe4f3667a8382b8eedb61aff9eafe947cb3db947701c8f306acdc9576a2da889d0161ccdd14c9245705cfbd4571 + checksum: f37dea6f84b5ee74e4e77c0ad244a3e0c10beb26542c5e10b2d5655f1fab3a9e580da2d772f2a6e3b09eb944ef8a52ff4e1b61cb8a02ee78e97f2ae8ae13842a languageName: node linkType: hard "@codemirror/search@npm:^6.3.0": - version: 6.4.0 - resolution: "@codemirror/search@npm:6.4.0" + version: 6.5.0 + resolution: "@codemirror/search@npm:6.5.0" dependencies: "@codemirror/state": ^6.0.0 "@codemirror/view": ^6.0.0 crelt: ^1.0.5 - checksum: 441e04fc896ac984f224e3adb20bc8a6c63d929778335c70d2cb1e3843674c7998db93e2ab1cd05e8276cb3819766cd23951eec748fdf8e66e3611bd9a55aab5 + checksum: 2e9f2344b7dbd4bad79058c105d8cbd02b2bf94c27495310f0e3b6e999010aa080dceea47ef46e35439cc9e131b47c46f7d2eda700ef491b5f2f34bbc8e145ab languageName: node linkType: hard @@ -485,13 +487,13 @@ __metadata: linkType: hard "@codemirror/view@npm:^6.0.0, @codemirror/view@npm:^6.2.2, @codemirror/view@npm:^6.6.0, @codemirror/view@npm:^6.7.0, @codemirror/view@npm:^6.9.3, @codemirror/view@npm:^6.9.6": - version: 6.12.0 - resolution: "@codemirror/view@npm:6.12.0" + version: 6.13.0 + resolution: "@codemirror/view@npm:6.13.0" dependencies: "@codemirror/state": ^6.1.4 style-mod: ^4.0.0 w3c-keyname: ^2.2.4 - checksum: 512cbc9c05ac2cfa738cdf7aac711847b44e24ff5869f31839a9fcc11da6a512448fa9bc980535d55b897de80d49e744336a2724ca1fe3dae8bfcb31e339fe64 + checksum: 3c4713eba5cf54afd9cf92f42295f7a9b42f4041ad9c17fc3dbbeebeb94f95fe3b2bd5377265ceed71a070d5b2472bae2fbb5013254c7e85fe5e1e3b5c807d79 languageName: node linkType: hard @@ -601,13 +603,13 @@ __metadata: linkType: hard "@humanwhocodes/config-array@npm:^0.11.8": - version: 0.11.8 - resolution: "@humanwhocodes/config-array@npm:0.11.8" + version: 0.11.10 + resolution: "@humanwhocodes/config-array@npm:0.11.10" dependencies: "@humanwhocodes/object-schema": ^1.2.1 debug: ^4.1.1 minimatch: ^3.0.5 - checksum: 0fd6b3c54f1674ce0a224df09b9c2f9846d20b9e54fabae1281ecfc04f2e6ad69bf19e1d6af6a28f88e8aa3990168b6cb9e1ef755868c3256a630605ec2cb1d3 + checksum: 1b1302e2403d0e35bc43e66d67a2b36b0ad1119efc704b5faff68c41f791a052355b010fb2d27ef022670f550de24cd6d08d5ecf0821c16326b7dcd0ee5d5d8a languageName: node linkType: hard @@ -700,7 +702,7 @@ __metadata: languageName: node linkType: hard -"@jridgewell/source-map@npm:^0.3.2": +"@jridgewell/source-map@npm:^0.3.3": version: 0.3.3 resolution: "@jridgewell/source-map@npm:0.3.3" dependencies: @@ -816,7 +818,7 @@ __metadata: languageName: node linkType: hard -"@jupyter/ydoc@npm:~0.2.3": +"@jupyter/ydoc@npm:~0.2.4": version: 0.2.4 resolution: "@jupyter/ydoc@npm:0.2.4" dependencies: @@ -969,42 +971,42 @@ __metadata: linkType: soft "@jupyterlab/application-extension@npm:^4.0.0": - version: 4.0.0 - resolution: "@jupyterlab/application-extension@npm:4.0.0" - dependencies: - "@jupyterlab/application": ^4.0.0 - "@jupyterlab/apputils": ^4.0.0 - "@jupyterlab/coreutils": ^6.0.0 - "@jupyterlab/property-inspector": ^4.0.0 - "@jupyterlab/settingregistry": ^4.0.0 - "@jupyterlab/statedb": ^4.0.0 - "@jupyterlab/statusbar": ^4.0.0 - "@jupyterlab/translation": ^4.0.0 - "@jupyterlab/ui-components": ^4.0.0 + version: 4.0.2 + resolution: "@jupyterlab/application-extension@npm:4.0.2" + dependencies: + "@jupyterlab/application": ^4.0.2 + "@jupyterlab/apputils": ^4.1.2 + "@jupyterlab/coreutils": ^6.0.2 + "@jupyterlab/property-inspector": ^4.0.2 + "@jupyterlab/settingregistry": ^4.0.2 + "@jupyterlab/statedb": ^4.0.2 + "@jupyterlab/statusbar": ^4.0.2 + "@jupyterlab/translation": ^4.0.2 + "@jupyterlab/ui-components": ^4.0.2 "@lumino/algorithm": ^2.0.0 "@lumino/commands": ^2.1.1 "@lumino/coreutils": ^2.1.1 "@lumino/disposable": ^2.1.1 "@lumino/widgets": ^2.1.1 react: ^18.2.0 - checksum: cefc57d1b49c2c92046b2dd413d55eedbab9462bd927bc22fd28a8a83aa8f22847376a2a2df77c606ffc8230e52fbbb9829644acec16ae428f4e5cf748c8509a + checksum: 9c87aed5f850ef0accd6a103b1e8d1e9e6b3db91a8f1b931f77f5c1124a9de37f6a652615106f03aff130649cc4705d53442f44e92e2b9383e63789a14c0b636 languageName: node linkType: hard -"@jupyterlab/application@npm:^4.0.0": - version: 4.0.0 - resolution: "@jupyterlab/application@npm:4.0.0" +"@jupyterlab/application@npm:^4.0.0, @jupyterlab/application@npm:^4.0.2": + version: 4.0.2 + resolution: "@jupyterlab/application@npm:4.0.2" dependencies: "@fortawesome/fontawesome-free": ^5.12.0 - "@jupyterlab/apputils": ^4.0.0 - "@jupyterlab/coreutils": ^6.0.0 - "@jupyterlab/docregistry": ^4.0.0 - "@jupyterlab/rendermime": ^4.0.0 - "@jupyterlab/rendermime-interfaces": ^3.8.0 - "@jupyterlab/services": ^7.0.0 - "@jupyterlab/statedb": ^4.0.0 - "@jupyterlab/translation": ^4.0.0 - "@jupyterlab/ui-components": ^4.0.0 + "@jupyterlab/apputils": ^4.1.2 + "@jupyterlab/coreutils": ^6.0.2 + "@jupyterlab/docregistry": ^4.0.2 + "@jupyterlab/rendermime": ^4.0.2 + "@jupyterlab/rendermime-interfaces": ^3.8.2 + "@jupyterlab/services": ^7.0.2 + "@jupyterlab/statedb": ^4.0.2 + "@jupyterlab/translation": ^4.0.2 + "@jupyterlab/ui-components": ^4.0.2 "@lumino/algorithm": ^2.0.0 "@lumino/application": ^2.1.1 "@lumino/commands": ^2.1.1 @@ -1015,27 +1017,27 @@ __metadata: "@lumino/properties": ^2.0.0 "@lumino/signaling": ^2.1.1 "@lumino/widgets": ^2.1.1 - checksum: 82750647de5997d6945627f517d82ffad3e7c272bce0c195819cc138b59546fbe43ee6c0ef4baf88de303964288ed1ac36234a99bedfb319eaf456b1321b199c + checksum: 5709b59c794e481d6e9b6c5575042c569f38058b6fc2a2c1d2831bdd0d1b0ff4df60c17132753ed8d9be1e2a28e4a0a18310d2b80e8ff5812fdaccbb1ee18bce languageName: node linkType: hard "@jupyterlab/apputils-extension@npm:^4.0.0": - version: 4.0.0 - resolution: "@jupyterlab/apputils-extension@npm:4.0.0" - dependencies: - "@jupyterlab/application": ^4.0.0 - "@jupyterlab/apputils": ^4.0.0 - "@jupyterlab/coreutils": ^6.0.0 - "@jupyterlab/docregistry": ^4.0.0 - "@jupyterlab/filebrowser": ^4.0.0 - "@jupyterlab/mainmenu": ^4.0.0 - "@jupyterlab/rendermime-interfaces": ^3.8.0 - "@jupyterlab/services": ^7.0.0 - "@jupyterlab/settingregistry": ^4.0.0 - "@jupyterlab/statedb": ^4.0.0 - "@jupyterlab/statusbar": ^4.0.0 - "@jupyterlab/translation": ^4.0.0 - "@jupyterlab/ui-components": ^4.0.0 + version: 4.0.2 + resolution: "@jupyterlab/apputils-extension@npm:4.0.2" + dependencies: + "@jupyterlab/application": ^4.0.2 + "@jupyterlab/apputils": ^4.1.2 + "@jupyterlab/coreutils": ^6.0.2 + "@jupyterlab/docregistry": ^4.0.2 + "@jupyterlab/filebrowser": ^4.0.2 + "@jupyterlab/mainmenu": ^4.0.2 + "@jupyterlab/rendermime-interfaces": ^3.8.2 + "@jupyterlab/services": ^7.0.2 + "@jupyterlab/settingregistry": ^4.0.2 + "@jupyterlab/statedb": ^4.0.2 + "@jupyterlab/statusbar": ^4.0.2 + "@jupyterlab/translation": ^4.0.2 + "@jupyterlab/ui-components": ^4.0.2 "@lumino/algorithm": ^2.0.0 "@lumino/commands": ^2.1.1 "@lumino/coreutils": ^2.1.1 @@ -1046,7 +1048,7 @@ __metadata: react: ^18.2.0 react-dom: ^18.2.0 react-toastify: ^9.0.8 - checksum: 2aedc16a75816ab2c40f644a7d46d94beb5196ce40a6fb833cacada3a248eaacbca95a04512457110aac51a0ab72b4508cab62a7306fe9a996f787fd33b0849a + checksum: 737b685bf5c8a5b828b61cfc06e3155fc35a0552d51a26833d5202efcc10caba5868a49ef7a1444a744ccfa39f07fcffe863d0b46cc56a427853440f2df9b58d languageName: node linkType: hard @@ -1079,23 +1081,23 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/attachments@npm:^4.0.0": - version: 4.0.0 - resolution: "@jupyterlab/attachments@npm:4.0.0" +"@jupyterlab/attachments@npm:^4.0.2": + version: 4.0.2 + resolution: "@jupyterlab/attachments@npm:4.0.2" dependencies: - "@jupyterlab/nbformat": ^4.0.0 - "@jupyterlab/observables": ^5.0.0 - "@jupyterlab/rendermime": ^4.0.0 - "@jupyterlab/rendermime-interfaces": ^3.8.0 + "@jupyterlab/nbformat": ^4.0.2 + "@jupyterlab/observables": ^5.0.2 + "@jupyterlab/rendermime": ^4.0.2 + "@jupyterlab/rendermime-interfaces": ^3.8.2 "@lumino/disposable": ^2.1.1 "@lumino/signaling": ^2.1.1 - checksum: 71c8e488a0d31e00e1345336edece04faa0d2b6fbf5de284fad05bb2a8f732c57e9b2ffe10999dd416a1d00cdce4bc425f9f88dd91684cb8b55eea52a1d5ed98 + checksum: 178d6abf3ff0767d87f78a79470760cf0025c3171e65dfd9a07916f3f6322f1080a21985ccdfdfeeec6fb73fb9aac9179cc413c43e4e33a45bcbcefa6cb97714 languageName: node linkType: hard "@jupyterlab/builder@npm:^4.0.0": - version: 4.0.0 - resolution: "@jupyterlab/builder@npm:4.0.0" + version: 4.0.2 + resolution: "@jupyterlab/builder@npm:4.0.2" dependencies: "@lumino/algorithm": ^2.0.0 "@lumino/application": ^2.1.1 @@ -1130,32 +1132,32 @@ __metadata: worker-loader: ^3.0.2 bin: build-labextension: lib/build-labextension.js - checksum: c359031858376e37b2fe46bc7897fe0568b0cf90bcaaee6bded2e22f207c61a32d4b00b6954de00082e551dd07b6259997c00feeb25e7d44acf9ac97934fdd45 + checksum: bb3ecbde5b2207d38577ad4f49af3b92a68b093d56b9eb1611fa967e553aab3e899a6e651edf90834e1b2d9ced57078e976ac03791178104962325423da25e7e languageName: node linkType: hard -"@jupyterlab/cells@npm:^4.0.0": - version: 4.0.0 - resolution: "@jupyterlab/cells@npm:4.0.0" +"@jupyterlab/cells@npm:^4.0.2": + version: 4.0.2 + resolution: "@jupyterlab/cells@npm:4.0.2" dependencies: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.0.2 - "@jupyterlab/apputils": ^4.0.0 - "@jupyterlab/attachments": ^4.0.0 - "@jupyterlab/codeeditor": ^4.0.0 - "@jupyterlab/codemirror": ^4.0.0 - "@jupyterlab/coreutils": ^6.0.0 - "@jupyterlab/documentsearch": ^4.0.0 - "@jupyterlab/filebrowser": ^4.0.0 - "@jupyterlab/nbformat": ^4.0.0 - "@jupyterlab/observables": ^5.0.0 - "@jupyterlab/outputarea": ^4.0.0 - "@jupyterlab/rendermime": ^4.0.0 - "@jupyterlab/services": ^7.0.0 - "@jupyterlab/toc": ^6.0.0 - "@jupyterlab/translation": ^4.0.0 - "@jupyterlab/ui-components": ^4.0.0 + "@jupyterlab/apputils": ^4.1.2 + "@jupyterlab/attachments": ^4.0.2 + "@jupyterlab/codeeditor": ^4.0.2 + "@jupyterlab/codemirror": ^4.0.2 + "@jupyterlab/coreutils": ^6.0.2 + "@jupyterlab/documentsearch": ^4.0.2 + "@jupyterlab/filebrowser": ^4.0.2 + "@jupyterlab/nbformat": ^4.0.2 + "@jupyterlab/observables": ^5.0.2 + "@jupyterlab/outputarea": ^4.0.2 + "@jupyterlab/rendermime": ^4.0.2 + "@jupyterlab/services": ^7.0.2 + "@jupyterlab/toc": ^6.0.2 + "@jupyterlab/translation": ^4.0.2 + "@jupyterlab/ui-components": ^4.0.2 "@lumino/algorithm": ^2.0.0 "@lumino/coreutils": ^2.1.1 "@lumino/domutils": ^2.0.0 @@ -1166,65 +1168,42 @@ __metadata: "@lumino/virtualdom": ^2.0.0 "@lumino/widgets": ^2.1.1 react: ^18.2.0 - checksum: 2474642428f344a316b0296640f9adb07e805d3c8896d1a601a2a5131fc4f4a8a4a627583f3dff904f7c318d6c0f236bc0d9cd200545f395796fcfe4244ecbcb + checksum: 92aa9ced743b41fbe5c0d3700762e3f825c9b01fb9b5684c909de330a62561a7b05af27390ca5993f905ec7141fa01072446b51232a8616181dd4eaed178b77f languageName: node linkType: hard -"@jupyterlab/codeeditor@npm:^3.6.3": - version: 3.6.3 - resolution: "@jupyterlab/codeeditor@npm:3.6.3" +"@jupyterlab/codeeditor@npm:^3.6.4": + version: 3.6.4 + resolution: "@jupyterlab/codeeditor@npm:3.6.4" dependencies: - "@jupyter/ydoc": ~0.2.3 - "@jupyterlab/coreutils": ^5.6.3 - "@jupyterlab/nbformat": ^3.6.3 - "@jupyterlab/observables": ^4.6.3 - "@jupyterlab/translation": ^3.6.3 - "@jupyterlab/ui-components": ^3.6.3 + "@jupyterlab/coreutils": ^5.6.4 + "@jupyterlab/nbformat": ^3.6.4 + "@jupyterlab/observables": ^4.6.4 + "@jupyterlab/shared-models": ^3.6.4 + "@jupyterlab/translation": ^3.6.4 + "@jupyterlab/ui-components": ^3.6.4 "@lumino/coreutils": ^1.11.0 "@lumino/disposable": ^1.10.0 "@lumino/dragdrop": ^1.13.0 "@lumino/messaging": ^1.10.0 "@lumino/signaling": ^1.10.0 "@lumino/widgets": ^1.37.2 - checksum: c259c82b666a09e6669f27a2db79a334fbfdd5c43a6ca760131dd4890163eb1ddcdc2e7aa8c2fd458559711a2b3e53874941c48dfa3f3fd9ed06d6ca00040007 + checksum: 81a5ff19c1dfd70b77bdbebba115be7ccac7a95fb2175f610266e0816895f98278f2ad376bf64f0c1b03471fdcb80175da0a1ad71e3bf3e77f3a343fdc2af5e6 languageName: node linkType: hard -"@jupyterlab/codeeditor@npm:^4.0.0": - version: 4.0.0 - resolution: "@jupyterlab/codeeditor@npm:4.0.0" - dependencies: - "@codemirror/state": ^6.2.0 - "@jupyter/ydoc": ^1.0.2 - "@jupyterlab/coreutils": ^6.0.0 - "@jupyterlab/nbformat": ^4.0.0 - "@jupyterlab/observables": ^5.0.0 - "@jupyterlab/statusbar": ^4.0.0 - "@jupyterlab/translation": ^4.0.0 - "@jupyterlab/ui-components": ^4.0.0 - "@lumino/coreutils": ^2.1.1 - "@lumino/disposable": ^2.1.1 - "@lumino/dragdrop": ^2.1.1 - "@lumino/messaging": ^2.0.0 - "@lumino/signaling": ^2.1.1 - "@lumino/widgets": ^2.1.1 - react: ^18.2.0 - checksum: 8287d77738a41814eb83621691adbcee119e6a7b3d4741250e53fc11b8664ce1f6ae5a79150222b235d45ec7b22db980d773d77a517d6b5c6a241b8a27817b7a - languageName: node - linkType: hard - -"@jupyterlab/codeeditor@npm:^4.0.1": - version: 4.0.1 - resolution: "@jupyterlab/codeeditor@npm:4.0.1" +"@jupyterlab/codeeditor@npm:^4.0.2": + version: 4.0.2 + resolution: "@jupyterlab/codeeditor@npm:4.0.2" dependencies: "@codemirror/state": ^6.2.0 "@jupyter/ydoc": ^1.0.2 - "@jupyterlab/coreutils": ^6.0.1 - "@jupyterlab/nbformat": ^4.0.1 - "@jupyterlab/observables": ^5.0.1 - "@jupyterlab/statusbar": ^4.0.1 - "@jupyterlab/translation": ^4.0.1 - "@jupyterlab/ui-components": ^4.0.1 + "@jupyterlab/coreutils": ^6.0.2 + "@jupyterlab/nbformat": ^4.0.2 + "@jupyterlab/observables": ^5.0.2 + "@jupyterlab/statusbar": ^4.0.2 + "@jupyterlab/translation": ^4.0.2 + "@jupyterlab/ui-components": ^4.0.2 "@lumino/coreutils": ^2.1.1 "@lumino/disposable": ^2.1.1 "@lumino/dragdrop": ^2.1.1 @@ -1232,46 +1211,46 @@ __metadata: "@lumino/signaling": ^2.1.1 "@lumino/widgets": ^2.1.1 react: ^18.2.0 - checksum: 674e7a65b4d028fa2852af6ad9f6b209e97d7dec74b0e4cd5f545ac962492200648e4e60c0daf62760dc65bc58a6d3947a976407c958d5eacb306412352ad34e + checksum: 61b638011acd21195fcd53b3b1f1df54abef0e0db85937f41f3a323cc6df75bcd63261739518bfd82b6bf45f638a090687cb43c2b66880546cff3e962d2e5994 languageName: node linkType: hard "@jupyterlab/codemirror-extension@npm:^4.0.0": - version: 4.0.0 - resolution: "@jupyterlab/codemirror-extension@npm:4.0.0" + version: 4.0.2 + resolution: "@jupyterlab/codemirror-extension@npm:4.0.2" dependencies: "@codemirror/lang-markdown": ^6.1.1 "@codemirror/language": ^6.6.0 "@codemirror/legacy-modes": ^6.3.2 "@jupyter/ydoc": ^1.0.2 - "@jupyterlab/application": ^4.0.0 - "@jupyterlab/codeeditor": ^4.0.0 - "@jupyterlab/codemirror": ^4.0.0 - "@jupyterlab/settingregistry": ^4.0.0 - "@jupyterlab/statusbar": ^4.0.0 - "@jupyterlab/translation": ^4.0.0 - "@jupyterlab/ui-components": ^4.0.0 + "@jupyterlab/application": ^4.0.2 + "@jupyterlab/codeeditor": ^4.0.2 + "@jupyterlab/codemirror": ^4.0.2 + "@jupyterlab/settingregistry": ^4.0.2 + "@jupyterlab/statusbar": ^4.0.2 + "@jupyterlab/translation": ^4.0.2 + "@jupyterlab/ui-components": ^4.0.2 "@lumino/coreutils": ^2.1.1 "@lumino/widgets": ^2.1.1 "@rjsf/utils": ^5.1.0 "@rjsf/validator-ajv8": ^5.1.0 react: ^18.2.0 - checksum: 90d398bb4610dfaf17bcb05a21fe072511a605365ffd059a620c2023846bdbee1f81a5fca2869f7ca392b4ebc544e85976634e9c44b6dd142671e846b41e682c + checksum: 70a8072453541b615b4b30b1bd3cd35a16e39a815203cdcaa195c326f6327ecbfb2bbd546d9a368f328f5b4202dfbc1335955abc2d30f4cef2d529b2f9ecdf5c languageName: node linkType: hard -"@jupyterlab/codemirror@npm:^3.6.3": - version: 3.6.3 - resolution: "@jupyterlab/codemirror@npm:3.6.3" +"@jupyterlab/codemirror@npm:^3.6.4": + version: 3.6.4 + resolution: "@jupyterlab/codemirror@npm:3.6.4" dependencies: - "@jupyter/ydoc": ~0.2.3 - "@jupyterlab/apputils": ^3.6.3 - "@jupyterlab/codeeditor": ^3.6.3 - "@jupyterlab/coreutils": ^5.6.3 - "@jupyterlab/nbformat": ^3.6.3 - "@jupyterlab/observables": ^4.6.3 - "@jupyterlab/statusbar": ^3.6.3 - "@jupyterlab/translation": ^3.6.3 + "@jupyterlab/apputils": ^3.6.4 + "@jupyterlab/codeeditor": ^3.6.4 + "@jupyterlab/coreutils": ^5.6.4 + "@jupyterlab/nbformat": ^3.6.4 + "@jupyterlab/observables": ^4.6.4 + "@jupyterlab/shared-models": ^3.6.4 + "@jupyterlab/statusbar": ^3.6.4 + "@jupyterlab/translation": ^3.6.4 "@lumino/algorithm": ^1.9.0 "@lumino/commands": ^1.19.0 "@lumino/coreutils": ^1.11.0 @@ -1282,55 +1261,13 @@ __metadata: codemirror: ~5.61.0 react: ^17.0.1 y-codemirror: ^3.0.1 - checksum: 3c93aec5aa6b838599e0dc4a00c1f4ace20513b25e2350133a66ac51231155a1bc96c4be80866ec8ffbfa15a6831892ebff1aaa41b6bcbe4cef46b1493eb69db - languageName: node - linkType: hard - -"@jupyterlab/codemirror@npm:^4.0.0": - version: 4.0.0 - resolution: "@jupyterlab/codemirror@npm:4.0.0" - dependencies: - "@codemirror/autocomplete": ^6.5.1 - "@codemirror/commands": ^6.2.3 - "@codemirror/lang-cpp": ^6.0.2 - "@codemirror/lang-css": ^6.1.1 - "@codemirror/lang-html": ^6.4.3 - "@codemirror/lang-java": ^6.0.1 - "@codemirror/lang-javascript": ^6.1.7 - "@codemirror/lang-json": ^6.0.1 - "@codemirror/lang-markdown": ^6.1.1 - "@codemirror/lang-php": ^6.0.1 - "@codemirror/lang-python": ^6.1.2 - "@codemirror/lang-rust": ^6.0.1 - "@codemirror/lang-sql": ^6.4.1 - "@codemirror/lang-wast": ^6.0.1 - "@codemirror/lang-xml": ^6.0.2 - "@codemirror/language": ^6.6.0 - "@codemirror/legacy-modes": ^6.3.2 - "@codemirror/search": ^6.3.0 - "@codemirror/state": ^6.2.0 - "@codemirror/view": ^6.9.6 - "@jupyter/ydoc": ^1.0.2 - "@jupyterlab/codeeditor": ^4.0.0 - "@jupyterlab/coreutils": ^6.0.0 - "@jupyterlab/documentsearch": ^4.0.0 - "@jupyterlab/nbformat": ^4.0.0 - "@jupyterlab/translation": ^4.0.0 - "@lezer/common": ^1.0.2 - "@lezer/generator": ^1.2.2 - "@lezer/highlight": ^1.1.4 - "@lezer/markdown": ^1.0.2 - "@lumino/coreutils": ^2.1.1 - "@lumino/disposable": ^2.1.1 - "@lumino/signaling": ^2.1.1 - yjs: ^13.5.40 - checksum: 3252c57f1d35924d6d6ad2a48690fa8bbe4e1a22455f9e1514b4405d16ff379532477aed331cd28908e8d0ef572ee76937ee5f382c95dc62e5dd97fa911603d5 + checksum: 8abdbb1616cb3ec1cc43a2866a625372cb5ece5f0e88a18f9f673318e94d70ac88aed74d9372db571af9ba0354f19ff9b5cabbf7b0e6f58a953a26cae86440ff languageName: node linkType: hard -"@jupyterlab/codemirror@npm:^4.0.1": - version: 4.0.1 - resolution: "@jupyterlab/codemirror@npm:4.0.1" +"@jupyterlab/codemirror@npm:^4.0.0, @jupyterlab/codemirror@npm:^4.0.2": + version: 4.0.2 + resolution: "@jupyterlab/codemirror@npm:4.0.2" dependencies: "@codemirror/autocomplete": ^6.5.1 "@codemirror/commands": ^6.2.3 @@ -1353,11 +1290,11 @@ __metadata: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.9.6 "@jupyter/ydoc": ^1.0.2 - "@jupyterlab/codeeditor": ^4.0.1 - "@jupyterlab/coreutils": ^6.0.1 - "@jupyterlab/documentsearch": ^4.0.1 - "@jupyterlab/nbformat": ^4.0.1 - "@jupyterlab/translation": ^4.0.1 + "@jupyterlab/codeeditor": ^4.0.2 + "@jupyterlab/coreutils": ^6.0.2 + "@jupyterlab/documentsearch": ^4.0.2 + "@jupyterlab/nbformat": ^4.0.2 + "@jupyterlab/translation": ^4.0.2 "@lezer/common": ^1.0.2 "@lezer/generator": ^1.2.2 "@lezer/highlight": ^1.1.4 @@ -1366,7 +1303,7 @@ __metadata: "@lumino/disposable": ^2.1.1 "@lumino/signaling": ^2.1.1 yjs: ^13.5.40 - checksum: 86125948d7821cb77765d6951ad7d7bca72a0fd7990efcf02e0d288fbe1650579997d63b79a02b206d649710318340241d080c7dcb76be37175c9fead2b6f342 + checksum: 1ddf08979874fc522eb88de6a743129640c5721410a8c6feb58d2e37b35ebcdeee5c217890e7f9561a595ca8b1c9b4a222b07da5e2e95c1e2dcd8c467378c50d languageName: node linkType: hard @@ -1388,9 +1325,9 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/coreutils@npm:^5.6.3": - version: 5.6.3 - resolution: "@jupyterlab/coreutils@npm:5.6.3" +"@jupyterlab/coreutils@npm:^5.6.4": + version: 5.6.4 + resolution: "@jupyterlab/coreutils@npm:5.6.4" dependencies: "@lumino/coreutils": ^1.11.0 "@lumino/disposable": ^1.10.0 @@ -1399,27 +1336,13 @@ __metadata: moment: ^2.24.0 path-browserify: ^1.0.0 url-parse: ~1.5.1 - checksum: a9bfd0732ef8623212f34ea71b3f5e6556cb7a14dc00e692abca4ea97c6ca0799f7c9a879b71be477194bcbe5d83160c6a99c9158a82ff4aef9db0f8b40a624d - languageName: node - linkType: hard - -"@jupyterlab/coreutils@npm:^6.0.0": - version: 6.0.0 - resolution: "@jupyterlab/coreutils@npm:6.0.0" - dependencies: - "@lumino/coreutils": ^2.1.1 - "@lumino/disposable": ^2.1.1 - "@lumino/signaling": ^2.1.1 - minimist: ~1.2.0 - path-browserify: ^1.0.0 - url-parse: ~1.5.4 - checksum: c46bb60af792186b4d9d60378fdb2f03473055736e438e05971bcbf1d5edb62c7722f1465e5ef2fd2dc9c4b5b6043301012478b218cf6c475a99914b26a1fd14 + checksum: a6cadc00c8d64507204e5761f6e1c8d95890dfe0f614ef4064f25d53371655956c6988b4c91b646c88f55f6f679bbf52fc6450288d3988f6aa7438134a5c2a2c languageName: node linkType: hard -"@jupyterlab/coreutils@npm:^6.0.0-alpha.18, @jupyterlab/coreutils@npm:^6.0.1": - version: 6.0.1 - resolution: "@jupyterlab/coreutils@npm:6.0.1" +"@jupyterlab/coreutils@npm:^6.0.0, @jupyterlab/coreutils@npm:^6.0.0-alpha.18, @jupyterlab/coreutils@npm:^6.0.2": + version: 6.0.2 + resolution: "@jupyterlab/coreutils@npm:6.0.2" dependencies: "@lumino/coreutils": ^2.1.1 "@lumino/disposable": ^2.1.1 @@ -1427,24 +1350,24 @@ __metadata: minimist: ~1.2.0 path-browserify: ^1.0.0 url-parse: ~1.5.4 - checksum: 8e4a8bc6fbca8b348c937275d0b89c76b68ed0f2e407b50210acf9c3aefef0d44f445c576c0931799da90a0b28530b9e51562f388847d466af76b34c9d28c265 + checksum: c2e9b9bf7227f68bb6b91044d2ac3808a872ac967e22f6aee10241d5dbc78a19deee65f91dd87c080f63170a760c96c99cb31e0e0b6f32c6341e432d781355ce languageName: node linkType: hard "@jupyterlab/docmanager-extension@npm:^4.0.0": - version: 4.0.0 - resolution: "@jupyterlab/docmanager-extension@npm:4.0.0" - dependencies: - "@jupyterlab/application": ^4.0.0 - "@jupyterlab/apputils": ^4.0.0 - "@jupyterlab/coreutils": ^6.0.0 - "@jupyterlab/docmanager": ^4.0.0 - "@jupyterlab/docregistry": ^4.0.0 - "@jupyterlab/services": ^7.0.0 - "@jupyterlab/settingregistry": ^4.0.0 - "@jupyterlab/statusbar": ^4.0.0 - "@jupyterlab/translation": ^4.0.0 - "@jupyterlab/ui-components": ^4.0.0 + version: 4.0.2 + resolution: "@jupyterlab/docmanager-extension@npm:4.0.2" + dependencies: + "@jupyterlab/application": ^4.0.2 + "@jupyterlab/apputils": ^4.1.2 + "@jupyterlab/coreutils": ^6.0.2 + "@jupyterlab/docmanager": ^4.0.2 + "@jupyterlab/docregistry": ^4.0.2 + "@jupyterlab/services": ^7.0.2 + "@jupyterlab/settingregistry": ^4.0.2 + "@jupyterlab/statusbar": ^4.0.2 + "@jupyterlab/translation": ^4.0.2 + "@jupyterlab/ui-components": ^4.0.2 "@lumino/algorithm": ^2.0.0 "@lumino/commands": ^2.1.1 "@lumino/coreutils": ^2.1.1 @@ -1452,21 +1375,21 @@ __metadata: "@lumino/signaling": ^2.1.1 "@lumino/widgets": ^2.1.1 react: ^18.2.0 - checksum: 42a94a51a62379898ba5c1f16ef04d73a57667cde28941a7f9a6d3ffeb1e28bfd584fa7c5783d3cfb4cac70578f152b4a75e77f9f417397e42794f50944264c0 + checksum: d15a0b9e0838dad9ee3eddeeaf698a964b355ef2e4eb52ab0240661ea0d396c29d3aa4c9fea5161defd5f8de1dea9dd1d939ccec16f0f9a5f5119227452f0387 languageName: node linkType: hard -"@jupyterlab/docmanager@npm:^4.0.0": - version: 4.0.0 - resolution: "@jupyterlab/docmanager@npm:4.0.0" - dependencies: - "@jupyterlab/apputils": ^4.0.0 - "@jupyterlab/coreutils": ^6.0.0 - "@jupyterlab/docregistry": ^4.0.0 - "@jupyterlab/services": ^7.0.0 - "@jupyterlab/statusbar": ^4.0.0 - "@jupyterlab/translation": ^4.0.0 - "@jupyterlab/ui-components": ^4.0.0 +"@jupyterlab/docmanager@npm:^4.0.0, @jupyterlab/docmanager@npm:^4.0.2": + version: 4.0.2 + resolution: "@jupyterlab/docmanager@npm:4.0.2" + dependencies: + "@jupyterlab/apputils": ^4.1.2 + "@jupyterlab/coreutils": ^6.0.2 + "@jupyterlab/docregistry": ^4.0.2 + "@jupyterlab/services": ^7.0.2 + "@jupyterlab/statusbar": ^4.0.2 + "@jupyterlab/translation": ^4.0.2 + "@jupyterlab/ui-components": ^4.0.2 "@lumino/algorithm": ^2.0.0 "@lumino/coreutils": ^2.1.1 "@lumino/disposable": ^2.1.1 @@ -1475,49 +1398,24 @@ __metadata: "@lumino/signaling": ^2.1.1 "@lumino/widgets": ^2.1.1 react: ^18.2.0 - checksum: d9495bea5f5e5de2d133be0ea097b9d2634575d1054dafb198d49398bfed6b9ff52d5d2ce0848ae11462fa5070f6651eccda3242f867661758f135b0703839f9 + checksum: dca1f56209608a82eebb0a365657f955bc8c546d66e00ec7747e753e3c76c8c0a5ed24b51736d157d2ed9d8264dc69545221e8fc2aa6af3eb6ec7eb4fd537a69 languageName: node linkType: hard -"@jupyterlab/docregistry@npm:^4.0.0": - version: 4.0.0 - resolution: "@jupyterlab/docregistry@npm:4.0.0" - dependencies: - "@jupyter/ydoc": ^1.0.2 - "@jupyterlab/apputils": ^4.0.0 - "@jupyterlab/codeeditor": ^4.0.0 - "@jupyterlab/coreutils": ^6.0.0 - "@jupyterlab/observables": ^5.0.0 - "@jupyterlab/rendermime": ^4.0.0 - "@jupyterlab/rendermime-interfaces": ^3.8.0 - "@jupyterlab/services": ^7.0.0 - "@jupyterlab/translation": ^4.0.0 - "@jupyterlab/ui-components": ^4.0.0 - "@lumino/algorithm": ^2.0.0 - "@lumino/coreutils": ^2.1.1 - "@lumino/disposable": ^2.1.1 - "@lumino/messaging": ^2.0.0 - "@lumino/properties": ^2.0.0 - "@lumino/signaling": ^2.1.1 - "@lumino/widgets": ^2.1.1 - checksum: 8927ea10312238333d1036ea6f4047d86779120cdf6c8391f91e5d859e85d504c2345f629a2a8cf50cdc394739828cc4868a46ebefe1c20932a2f496463ca250 - languageName: node - linkType: hard - -"@jupyterlab/docregistry@npm:^4.0.1": - version: 4.0.1 - resolution: "@jupyterlab/docregistry@npm:4.0.1" +"@jupyterlab/docregistry@npm:^4.0.0, @jupyterlab/docregistry@npm:^4.0.2": + version: 4.0.2 + resolution: "@jupyterlab/docregistry@npm:4.0.2" dependencies: "@jupyter/ydoc": ^1.0.2 - "@jupyterlab/apputils": ^4.1.1 - "@jupyterlab/codeeditor": ^4.0.1 - "@jupyterlab/coreutils": ^6.0.1 - "@jupyterlab/observables": ^5.0.1 - "@jupyterlab/rendermime": ^4.0.1 - "@jupyterlab/rendermime-interfaces": ^3.8.1 - "@jupyterlab/services": ^7.0.1 - "@jupyterlab/translation": ^4.0.1 - "@jupyterlab/ui-components": ^4.0.1 + "@jupyterlab/apputils": ^4.1.2 + "@jupyterlab/codeeditor": ^4.0.2 + "@jupyterlab/coreutils": ^6.0.2 + "@jupyterlab/observables": ^5.0.2 + "@jupyterlab/rendermime": ^4.0.2 + "@jupyterlab/rendermime-interfaces": ^3.8.2 + "@jupyterlab/services": ^7.0.2 + "@jupyterlab/translation": ^4.0.2 + "@jupyterlab/ui-components": ^4.0.2 "@lumino/algorithm": ^2.0.0 "@lumino/coreutils": ^2.1.1 "@lumino/disposable": ^2.1.1 @@ -1525,35 +1423,17 @@ __metadata: "@lumino/properties": ^2.0.0 "@lumino/signaling": ^2.1.1 "@lumino/widgets": ^2.1.1 - checksum: f4ef201bea3ef70b5ad741b1e61cc457b347d92e19b53f09fbc7d9fa4fd030e2c591ec4398914551c5a435ccbb1878e442ef1934cd0d9d428896bd1bd394200d + checksum: b88c6a6ab7825aff95541c8a9f4381ccee4533e8c5bda588538c8a110dd8c6cb413e73345bc8fbf74aebe9fed4f9d298de6efa08378212869510e81ccb9f10ca languageName: node linkType: hard -"@jupyterlab/documentsearch@npm:^4.0.0": - version: 4.0.0 - resolution: "@jupyterlab/documentsearch@npm:4.0.0" - dependencies: - "@jupyterlab/apputils": ^4.0.0 - "@jupyterlab/translation": ^4.0.0 - "@jupyterlab/ui-components": ^4.0.0 - "@lumino/coreutils": ^2.1.1 - "@lumino/disposable": ^2.1.1 - "@lumino/messaging": ^2.0.0 - "@lumino/polling": ^2.1.1 - "@lumino/signaling": ^2.1.1 - "@lumino/widgets": ^2.1.1 - react: ^18.2.0 - checksum: 686befb5ae48a485530f298f7d067b5c77d17524fff779f8c468857c44baab75f1ed3c504546f6440cf0cfc8420e617abcbaa120208d2166cfb124a6455e5472 - languageName: node - linkType: hard - -"@jupyterlab/documentsearch@npm:^4.0.1": - version: 4.0.1 - resolution: "@jupyterlab/documentsearch@npm:4.0.1" +"@jupyterlab/documentsearch@npm:^4.0.2": + version: 4.0.2 + resolution: "@jupyterlab/documentsearch@npm:4.0.2" dependencies: - "@jupyterlab/apputils": ^4.1.1 - "@jupyterlab/translation": ^4.0.1 - "@jupyterlab/ui-components": ^4.0.1 + "@jupyterlab/apputils": ^4.1.2 + "@jupyterlab/translation": ^4.0.2 + "@jupyterlab/ui-components": ^4.0.2 "@lumino/coreutils": ^2.1.1 "@lumino/disposable": ^2.1.1 "@lumino/messaging": ^2.0.0 @@ -1561,46 +1441,46 @@ __metadata: "@lumino/signaling": ^2.1.1 "@lumino/widgets": ^2.1.1 react: ^18.2.0 - checksum: 1a98f8280ccad2eadcb1ddbe16919d6e8032b3e9b29a5252b49f2a4ee210a6831d2813889f44eafbd682547c6c2946e61a61a2f8dd0b67c6aea93fa9bb764a3b + checksum: d621722648f8d0e9c17c4df093bf02de0b3c5c1e8cb4b4b46482114700c4ca47dbb35831d2f046b0a28c950c6cd7442cdd791357af87d6e4df5da3b347d463e0 languageName: node linkType: hard "@jupyterlab/filebrowser-extension@npm:^4.0.0": - version: 4.0.0 - resolution: "@jupyterlab/filebrowser-extension@npm:4.0.0" - dependencies: - "@jupyterlab/application": ^4.0.0 - "@jupyterlab/apputils": ^4.0.0 - "@jupyterlab/coreutils": ^6.0.0 - "@jupyterlab/docmanager": ^4.0.0 - "@jupyterlab/docregistry": ^4.0.0 - "@jupyterlab/filebrowser": ^4.0.0 - "@jupyterlab/services": ^7.0.0 - "@jupyterlab/settingregistry": ^4.0.0 - "@jupyterlab/statedb": ^4.0.0 - "@jupyterlab/statusbar": ^4.0.0 - "@jupyterlab/translation": ^4.0.0 - "@jupyterlab/ui-components": ^4.0.0 + version: 4.0.2 + resolution: "@jupyterlab/filebrowser-extension@npm:4.0.2" + dependencies: + "@jupyterlab/application": ^4.0.2 + "@jupyterlab/apputils": ^4.1.2 + "@jupyterlab/coreutils": ^6.0.2 + "@jupyterlab/docmanager": ^4.0.2 + "@jupyterlab/docregistry": ^4.0.2 + "@jupyterlab/filebrowser": ^4.0.2 + "@jupyterlab/services": ^7.0.2 + "@jupyterlab/settingregistry": ^4.0.2 + "@jupyterlab/statedb": ^4.0.2 + "@jupyterlab/statusbar": ^4.0.2 + "@jupyterlab/translation": ^4.0.2 + "@jupyterlab/ui-components": ^4.0.2 "@lumino/algorithm": ^2.0.0 "@lumino/commands": ^2.1.1 "@lumino/widgets": ^2.1.1 - checksum: 45c6d7788e8a18b4b012fb4c4b6b6cae2f1d8b4ed5c9a24a28802dc6ba7778112613bf7b5e73b3147d5924fedc1cde7ccc0a2e84205d9ee4a83f7ac14fc484df + checksum: 4169979d00499143c0aa1ed2200657b65e476dc2f5ac46cc54c1328dc5b29b9e74bde63b2b80bf0eb613b28ebef63e94a1beacb9d4583afe144ce77f98aed6e8 languageName: node linkType: hard -"@jupyterlab/filebrowser@npm:^4.0.0": - version: 4.0.0 - resolution: "@jupyterlab/filebrowser@npm:4.0.0" - dependencies: - "@jupyterlab/apputils": ^4.0.0 - "@jupyterlab/coreutils": ^6.0.0 - "@jupyterlab/docmanager": ^4.0.0 - "@jupyterlab/docregistry": ^4.0.0 - "@jupyterlab/services": ^7.0.0 - "@jupyterlab/statedb": ^4.0.0 - "@jupyterlab/statusbar": ^4.0.0 - "@jupyterlab/translation": ^4.0.0 - "@jupyterlab/ui-components": ^4.0.0 +"@jupyterlab/filebrowser@npm:^4.0.0, @jupyterlab/filebrowser@npm:^4.0.2": + version: 4.0.2 + resolution: "@jupyterlab/filebrowser@npm:4.0.2" + dependencies: + "@jupyterlab/apputils": ^4.1.2 + "@jupyterlab/coreutils": ^6.0.2 + "@jupyterlab/docmanager": ^4.0.2 + "@jupyterlab/docregistry": ^4.0.2 + "@jupyterlab/services": ^7.0.2 + "@jupyterlab/statedb": ^4.0.2 + "@jupyterlab/statusbar": ^4.0.2 + "@jupyterlab/translation": ^4.0.2 + "@jupyterlab/ui-components": ^4.0.2 "@lumino/algorithm": ^2.0.0 "@lumino/coreutils": ^2.1.1 "@lumino/disposable": ^2.1.1 @@ -1612,59 +1492,59 @@ __metadata: "@lumino/virtualdom": ^2.0.0 "@lumino/widgets": ^2.1.1 react: ^18.2.0 - checksum: 58e61e9b0e6d373fa5cd93398dfee146c635d5f5008d00e640c4f0687ed8ed7135779806e159703a88ecd55f45b1725214c657a466e63577b70b0380c5852df5 + checksum: ae5426f6811488cb90538f8ec74fa87d4ead847a2727ba64d35b4b2d81e6058bc6340853affedb2e4e7362627453b8dd1e108142a425bc039745714058ce5d73 languageName: node linkType: hard "@jupyterlab/fileeditor@npm:^4.0.0": - version: 4.0.1 - resolution: "@jupyterlab/fileeditor@npm:4.0.1" - dependencies: - "@jupyterlab/apputils": ^4.1.1 - "@jupyterlab/codeeditor": ^4.0.1 - "@jupyterlab/codemirror": ^4.0.1 - "@jupyterlab/coreutils": ^6.0.1 - "@jupyterlab/docregistry": ^4.0.1 - "@jupyterlab/documentsearch": ^4.0.1 - "@jupyterlab/lsp": ^4.0.1 - "@jupyterlab/statusbar": ^4.0.1 - "@jupyterlab/toc": ^6.0.1 - "@jupyterlab/translation": ^4.0.1 - "@jupyterlab/ui-components": ^4.0.1 + version: 4.0.2 + resolution: "@jupyterlab/fileeditor@npm:4.0.2" + dependencies: + "@jupyterlab/apputils": ^4.1.2 + "@jupyterlab/codeeditor": ^4.0.2 + "@jupyterlab/codemirror": ^4.0.2 + "@jupyterlab/coreutils": ^6.0.2 + "@jupyterlab/docregistry": ^4.0.2 + "@jupyterlab/documentsearch": ^4.0.2 + "@jupyterlab/lsp": ^4.0.2 + "@jupyterlab/statusbar": ^4.0.2 + "@jupyterlab/toc": ^6.0.2 + "@jupyterlab/translation": ^4.0.2 + "@jupyterlab/ui-components": ^4.0.2 "@lumino/commands": ^2.1.1 "@lumino/coreutils": ^2.1.1 "@lumino/messaging": ^2.0.0 "@lumino/widgets": ^2.1.1 react: ^18.2.0 regexp-match-indices: ^1.0.2 - checksum: 7bab9e49de9cb69d15bbfc1005ff1edd71f52b48ccd28566927cf7956dd33e281123a61ab9432724a647f1315a731d0f28d1145ed0904b67bc0dd9a6c0b8827e + checksum: a83615c1094a143eb58701ba1f90f180d0e373d36db6d4aabebb73b26da7efaa47fd1946541cc529672b9042c66df1b2f23894267fe4afb5712a97cad42e471e languageName: node linkType: hard "@jupyterlab/launcher-extension@npm:^4.0.0": - version: 4.0.0 - resolution: "@jupyterlab/launcher-extension@npm:4.0.0" - dependencies: - "@jupyterlab/application": ^4.0.0 - "@jupyterlab/apputils": ^4.0.0 - "@jupyterlab/filebrowser": ^4.0.0 - "@jupyterlab/launcher": ^4.0.0 - "@jupyterlab/translation": ^4.0.0 - "@jupyterlab/ui-components": ^4.0.0 + version: 4.0.2 + resolution: "@jupyterlab/launcher-extension@npm:4.0.2" + dependencies: + "@jupyterlab/application": ^4.0.2 + "@jupyterlab/apputils": ^4.1.2 + "@jupyterlab/filebrowser": ^4.0.2 + "@jupyterlab/launcher": ^4.0.2 + "@jupyterlab/translation": ^4.0.2 + "@jupyterlab/ui-components": ^4.0.2 "@lumino/algorithm": ^2.0.0 "@lumino/coreutils": ^2.1.1 "@lumino/widgets": ^2.1.1 - checksum: 3125b95053f1e7eafc0923f14f55dcbb57682521139f3cf871221da174154c1d699aae8668b7a8718686042bc6211b7ca950cff2af8b67a2f92389f3aeb2119d + checksum: e536a7375afc511f08bcc37de48c3586c094f350a5cd325e6a56251203a492220b8ee356bdba28d84cc583537ab3448441b0706b001a9d6ce70f2120ffad057c languageName: node linkType: hard -"@jupyterlab/launcher@npm:^4.0.0": - version: 4.0.0 - resolution: "@jupyterlab/launcher@npm:4.0.0" +"@jupyterlab/launcher@npm:^4.0.0, @jupyterlab/launcher@npm:^4.0.2": + version: 4.0.2 + resolution: "@jupyterlab/launcher@npm:4.0.2" dependencies: - "@jupyterlab/apputils": ^4.0.0 - "@jupyterlab/translation": ^4.0.0 - "@jupyterlab/ui-components": ^4.0.0 + "@jupyterlab/apputils": ^4.1.2 + "@jupyterlab/translation": ^4.0.2 + "@jupyterlab/ui-components": ^4.0.2 "@lumino/algorithm": ^2.0.0 "@lumino/commands": ^2.1.1 "@lumino/coreutils": ^2.1.1 @@ -1672,60 +1552,39 @@ __metadata: "@lumino/properties": ^2.0.0 "@lumino/widgets": ^2.1.1 react: ^18.2.0 - checksum: 5375eb2e49168a7ec961705603e9d7a98887decd10ce039a03036666bb84c8220b8cc3fa99036e4279aad5f7102c738c2fa71a3fbe580d90e06aee92343f0179 + checksum: 4415fb8d2db8701857f21c515a8d4680133ffb5023b005681abd5f2df353a6cbb0e16099e35f363df44f015d4784a267c355c807ab840a15f63f1f3c219c7d11 languageName: node linkType: hard "@jupyterlab/logconsole@npm:^4.0.0": - version: 4.0.0 - resolution: "@jupyterlab/logconsole@npm:4.0.0" - dependencies: - "@jupyterlab/coreutils": ^6.0.0 - "@jupyterlab/nbformat": ^4.0.0 - "@jupyterlab/outputarea": ^4.0.0 - "@jupyterlab/rendermime": ^4.0.0 - "@jupyterlab/services": ^7.0.0 - "@jupyterlab/translation": ^4.0.0 + version: 4.0.2 + resolution: "@jupyterlab/logconsole@npm:4.0.2" + dependencies: + "@jupyterlab/coreutils": ^6.0.2 + "@jupyterlab/nbformat": ^4.0.2 + "@jupyterlab/outputarea": ^4.0.2 + "@jupyterlab/rendermime": ^4.0.2 + "@jupyterlab/services": ^7.0.2 + "@jupyterlab/translation": ^4.0.2 "@lumino/coreutils": ^2.1.1 "@lumino/disposable": ^2.1.1 "@lumino/messaging": ^2.0.0 "@lumino/signaling": ^2.1.1 "@lumino/widgets": ^2.1.1 - checksum: d1c60c7871b2f1a8f405f6bbcdab3ade621262d2d5804a83269afc2dc11d249a5dcc7578702b0c45805c8ab657a6970add685fe5a2f1fc90e46b18aa34378bba + checksum: 68bd1782dbabef7e497f916ac22ef5c31891b111b56ae2c83bd31b5f50bdedcfcbd6dc153832597634f03a2708538cc678faca8610a52b9d89163ae67d11ed17 languageName: node linkType: hard -"@jupyterlab/lsp@npm:^4.0.0": - version: 4.0.0 - resolution: "@jupyterlab/lsp@npm:4.0.0" - dependencies: - "@jupyterlab/apputils": ^4.0.0 - "@jupyterlab/codeeditor": ^4.0.0 - "@jupyterlab/coreutils": ^6.0.0 - "@jupyterlab/docregistry": ^4.0.0 - "@jupyterlab/services": ^7.0.0 - "@jupyterlab/translation": ^4.0.0 - "@lumino/coreutils": ^2.1.1 - "@lumino/disposable": ^2.1.1 - "@lumino/signaling": ^2.1.1 - lodash.mergewith: ^4.6.1 - vscode-jsonrpc: ^6.0.0 - vscode-languageserver-protocol: ^3.17.0 - vscode-ws-jsonrpc: ~1.0.2 - checksum: 7657fe88fc155e7a988558b9b8d34a36d6bb5fee0571a0953ac77add170f82b2f7ad1d76c1f90185087daebb4d40c5ff9e7f44478abbcb485736f7806d3d7fb8 - languageName: node - linkType: hard - -"@jupyterlab/lsp@npm:^4.0.1": - version: 4.0.1 - resolution: "@jupyterlab/lsp@npm:4.0.1" - dependencies: - "@jupyterlab/apputils": ^4.1.1 - "@jupyterlab/codeeditor": ^4.0.1 - "@jupyterlab/coreutils": ^6.0.1 - "@jupyterlab/docregistry": ^4.0.1 - "@jupyterlab/services": ^7.0.1 - "@jupyterlab/translation": ^4.0.1 +"@jupyterlab/lsp@npm:^4.0.2": + version: 4.0.2 + resolution: "@jupyterlab/lsp@npm:4.0.2" + dependencies: + "@jupyterlab/apputils": ^4.1.2 + "@jupyterlab/codeeditor": ^4.0.2 + "@jupyterlab/coreutils": ^6.0.2 + "@jupyterlab/docregistry": ^4.0.2 + "@jupyterlab/services": ^7.0.2 + "@jupyterlab/translation": ^4.0.2 "@lumino/coreutils": ^2.1.1 "@lumino/disposable": ^2.1.1 "@lumino/signaling": ^2.1.1 @@ -1733,94 +1592,85 @@ __metadata: vscode-jsonrpc: ^6.0.0 vscode-languageserver-protocol: ^3.17.0 vscode-ws-jsonrpc: ~1.0.2 - checksum: 9fe159f2402cfef5aad51394ab0509022c1a66fbf1c828ac513f09200f8722862ee41356aba3a853aaa17329dd256158a27f062d8254f77c6dd12d64c1201080 + checksum: 476517f4cd9ce7758638f96c1037f26d758ec8e102d87b9472cbaa6208d94bcfc1da0ec853202761f6542404a034932657b14f82e2355d312b3f0c5c140cfbfd languageName: node linkType: hard "@jupyterlab/mainmenu-extension@npm:^4.0.0": - version: 4.0.0 - resolution: "@jupyterlab/mainmenu-extension@npm:4.0.0" - dependencies: - "@jupyterlab/application": ^4.0.0 - "@jupyterlab/apputils": ^4.0.0 - "@jupyterlab/coreutils": ^6.0.0 - "@jupyterlab/mainmenu": ^4.0.0 - "@jupyterlab/services": ^7.0.0 - "@jupyterlab/settingregistry": ^4.0.0 - "@jupyterlab/translation": ^4.0.0 - "@jupyterlab/ui-components": ^4.0.0 + version: 4.0.2 + resolution: "@jupyterlab/mainmenu-extension@npm:4.0.2" + dependencies: + "@jupyterlab/application": ^4.0.2 + "@jupyterlab/apputils": ^4.1.2 + "@jupyterlab/coreutils": ^6.0.2 + "@jupyterlab/mainmenu": ^4.0.2 + "@jupyterlab/services": ^7.0.2 + "@jupyterlab/settingregistry": ^4.0.2 + "@jupyterlab/translation": ^4.0.2 + "@jupyterlab/ui-components": ^4.0.2 "@lumino/algorithm": ^2.0.0 "@lumino/coreutils": ^2.1.1 "@lumino/disposable": ^2.1.1 "@lumino/widgets": ^2.1.1 - checksum: 5acfda068d5f82e446e47ec5cf2b58069a368005640048042c85bfd6e4eaa4b338602cdbf25c037094c3a168bb3f554efef45ab5e0906562342ae64c7618d519 + checksum: 80f91ad58177d6c6dcd63c675c0289efb83a0c66a5f7cd6bcb43f5041d559e4c953433e363cfbea66893605448c98daadab5b257912e6fa5b699aefdc8cc97fb languageName: node linkType: hard -"@jupyterlab/mainmenu@npm:^4.0.0": - version: 4.0.0 - resolution: "@jupyterlab/mainmenu@npm:4.0.0" +"@jupyterlab/mainmenu@npm:^4.0.0, @jupyterlab/mainmenu@npm:^4.0.2": + version: 4.0.2 + resolution: "@jupyterlab/mainmenu@npm:4.0.2" dependencies: - "@jupyterlab/apputils": ^4.0.0 - "@jupyterlab/translation": ^4.0.0 - "@jupyterlab/ui-components": ^4.0.0 + "@jupyterlab/apputils": ^4.1.2 + "@jupyterlab/translation": ^4.0.2 + "@jupyterlab/ui-components": ^4.0.2 "@lumino/algorithm": ^2.0.0 "@lumino/commands": ^2.1.1 "@lumino/coreutils": ^2.1.1 "@lumino/widgets": ^2.1.1 - checksum: e51aa6bd4170f3defa8f8a5c08a8e9223621301ee4334b6acb9e33569ea3da6369a5bc012f082900788a587a89f3e4fcc3ab0971758f810d73d5b6dfbeb0da16 + checksum: de84dad79c237aad7db8c433c598d0e57e415bafac0e2029ddbe200ab8129e18ddd45674b5506e8f9cd8c23af491ec30c39ee2e9478647af72cf419c266127c7 languageName: node linkType: hard -"@jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.15, @jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@npm:^4.0.0": - version: 4.0.0 - resolution: "@jupyterlab/nbformat@npm:4.0.0" +"@jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.15, @jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@npm:^4.0.2": + version: 4.0.2 + resolution: "@jupyterlab/nbformat@npm:4.0.2" dependencies: "@lumino/coreutils": ^2.1.1 - checksum: 152da6b9622c7683543ad2bd9525857a8a39b4b8a5474998e921232f108c366dd8625daeb14e2cc2aa8aac124b9a5d16f285310cd241c9769d51af80730dbd59 + checksum: cccd1c7fd8717ccece1f7642f3f7218103c3baa479fce85666770719b3359116e5279cdd97e2b584122a793b437fc9ece7055d1da27ad35a090f90398a76d59f languageName: node linkType: hard -"@jupyterlab/nbformat@npm:^3.6.3": - version: 3.6.3 - resolution: "@jupyterlab/nbformat@npm:3.6.3" +"@jupyterlab/nbformat@npm:^3.6.4": + version: 3.6.4 + resolution: "@jupyterlab/nbformat@npm:3.6.4" dependencies: "@lumino/coreutils": ^1.11.0 - checksum: 5118877af7b7d54a699adbf4f42dd00f04738c9ee04233a40de24843830bfe6515b82b648a629cf019c51a1342158e358670702fd666637986551b626de25f26 - languageName: node - linkType: hard - -"@jupyterlab/nbformat@npm:^4.0.1": - version: 4.0.1 - resolution: "@jupyterlab/nbformat@npm:4.0.1" - dependencies: - "@lumino/coreutils": ^2.1.1 - checksum: f3e147e6697b636e1b909b90fab4bf74b45889ee61dfaf511c7b2378f35c5ca60b980faa2681245833e9c79d5be8e67a1f08de4e77846d4e811aa7d6356d0345 + checksum: da46160d8878339b1604e00c49814cd30978bbf9906362456c9624596e74791e6c58cbb99bd81f06676413e119c2bc718bf26f701f661c19ece360e31c1dae16 languageName: node linkType: hard "@jupyterlab/notebook@npm:~4.0.0": - version: 4.0.0 - resolution: "@jupyterlab/notebook@npm:4.0.0" + version: 4.0.2 + resolution: "@jupyterlab/notebook@npm:4.0.2" dependencies: "@jupyter/ydoc": ^1.0.2 - "@jupyterlab/apputils": ^4.0.0 - "@jupyterlab/cells": ^4.0.0 - "@jupyterlab/codeeditor": ^4.0.0 - "@jupyterlab/codemirror": ^4.0.0 - "@jupyterlab/coreutils": ^6.0.0 - "@jupyterlab/docregistry": ^4.0.0 - "@jupyterlab/documentsearch": ^4.0.0 - "@jupyterlab/lsp": ^4.0.0 - "@jupyterlab/nbformat": ^4.0.0 - "@jupyterlab/observables": ^5.0.0 - "@jupyterlab/rendermime": ^4.0.0 - "@jupyterlab/services": ^7.0.0 - "@jupyterlab/settingregistry": ^4.0.0 - "@jupyterlab/statusbar": ^4.0.0 - "@jupyterlab/toc": ^6.0.0 - "@jupyterlab/translation": ^4.0.0 - "@jupyterlab/ui-components": ^4.0.0 + "@jupyterlab/apputils": ^4.1.2 + "@jupyterlab/cells": ^4.0.2 + "@jupyterlab/codeeditor": ^4.0.2 + "@jupyterlab/codemirror": ^4.0.2 + "@jupyterlab/coreutils": ^6.0.2 + "@jupyterlab/docregistry": ^4.0.2 + "@jupyterlab/documentsearch": ^4.0.2 + "@jupyterlab/lsp": ^4.0.2 + "@jupyterlab/nbformat": ^4.0.2 + "@jupyterlab/observables": ^5.0.2 + "@jupyterlab/rendermime": ^4.0.2 + "@jupyterlab/services": ^7.0.2 + "@jupyterlab/settingregistry": ^4.0.2 + "@jupyterlab/statusbar": ^4.0.2 + "@jupyterlab/toc": ^6.0.2 + "@jupyterlab/translation": ^4.0.2 + "@jupyterlab/ui-components": ^4.0.2 "@lumino/algorithm": ^2.0.0 "@lumino/coreutils": ^2.1.1 "@lumino/domutils": ^2.0.0 @@ -1831,119 +1681,96 @@ __metadata: "@lumino/virtualdom": ^2.0.0 "@lumino/widgets": ^2.1.1 react: ^18.2.0 - checksum: 29ba29519fba567d0d686426b750d58bfddf6235cb3ad812ef671750637dbfcdafb5348feda44168d83f65936e5478562cffdc7ceeabac221fcdfab38f11bc31 + checksum: 053cde5377aceac7ff6fe30e734354df1839cbf84bfd19f7d3992a1aaddcd66f5c8470bb2537c94b28dfdb194dfdacfaa38207fd2d4989b0575b27c20396bbfe languageName: node linkType: hard -"@jupyterlab/observables@npm:^4.6.3": - version: 4.6.3 - resolution: "@jupyterlab/observables@npm:4.6.3" +"@jupyterlab/observables@npm:^4.6.4": + version: 4.6.4 + resolution: "@jupyterlab/observables@npm:4.6.4" dependencies: "@lumino/algorithm": ^1.9.0 "@lumino/coreutils": ^1.11.0 "@lumino/disposable": ^1.10.0 "@lumino/messaging": ^1.10.0 "@lumino/signaling": ^1.10.0 - checksum: f16620454bd88fc37edf078df9c33a91de5fa74e6a9e20f6de0e45ea142d086332014700f3815ca734001c791cb28fd47070c8aa13ffc460d25b3925b77a03d4 - languageName: node - linkType: hard - -"@jupyterlab/observables@npm:^5.0.0": - version: 5.0.0 - resolution: "@jupyterlab/observables@npm:5.0.0" - dependencies: - "@lumino/algorithm": ^2.0.0 - "@lumino/coreutils": ^2.1.1 - "@lumino/disposable": ^2.1.1 - "@lumino/messaging": ^2.0.0 - "@lumino/signaling": ^2.1.1 - checksum: 1554f473e0ab0eef288ea86945c03a07d79f478bfdf55651036161a58cd1d9a0695e202ced0ebe3a6863f73ba12ccd85b86f7a4c2e6f9fe41ccddb0c4fbbc33e + checksum: e6123a1f337c47c30a9443b8f7c2061657b6795b99c5b26e51a8d3a3482a0179696a18d31c4f909ef9b5b8f12e01f110993a69153b9263e3f66218e927c7b742 languageName: node linkType: hard -"@jupyterlab/observables@npm:^5.0.1": - version: 5.0.1 - resolution: "@jupyterlab/observables@npm:5.0.1" - dependencies: - "@lumino/algorithm": ^2.0.0 - "@lumino/coreutils": ^2.1.1 - "@lumino/disposable": ^2.1.1 - "@lumino/messaging": ^2.0.0 - "@lumino/signaling": ^2.1.1 - checksum: d719992bde580f88295c40bd4a53b7a0db38d014b538bf95120943b6a07e3efe57ff6070e3b63c0d41c5cfb83eab52ed872b0081860ca8e54b9a5df3a3685895 - languageName: node - linkType: hard - -"@jupyterlab/outputarea@npm:^4.0.0": - version: 4.0.0 - resolution: "@jupyterlab/outputarea@npm:4.0.0" - dependencies: - "@jupyterlab/apputils": ^4.0.0 - "@jupyterlab/nbformat": ^4.0.0 - "@jupyterlab/observables": ^5.0.0 - "@jupyterlab/rendermime": ^4.0.0 - "@jupyterlab/rendermime-interfaces": ^3.8.0 - "@jupyterlab/services": ^7.0.0 - "@jupyterlab/translation": ^4.0.0 +"@jupyterlab/observables@npm:^5.0.0, @jupyterlab/observables@npm:^5.0.2": + version: 5.0.2 + resolution: "@jupyterlab/observables@npm:5.0.2" + dependencies: "@lumino/algorithm": ^2.0.0 "@lumino/coreutils": ^2.1.1 "@lumino/disposable": ^2.1.1 "@lumino/messaging": ^2.0.0 - "@lumino/properties": ^2.0.0 "@lumino/signaling": ^2.1.1 - "@lumino/widgets": ^2.1.1 - checksum: d2c22e1fe1ebe4407e7a5d383addda64561b5a3afda277a0c4750be48bf30fbb90ee6a3401ac0a9410a7e3c969792d34bc2dcc880806fa3b290ecace01710e80 + checksum: 6d206873f3e2bfd95267fde6fae565eef5c1f7df93dc0a27091ea3eceea5cbded6c8b90eb5d4311e3b6158385455ed358602cb4b3daee717f6cc195b259cfb24 languageName: node linkType: hard -"@jupyterlab/property-inspector@npm:^4.0.0": - version: 4.0.0 - resolution: "@jupyterlab/property-inspector@npm:4.0.0" - dependencies: - "@jupyterlab/application": ^4.0.0 - "@jupyterlab/translation": ^4.0.0 - "@jupyterlab/ui-components": ^4.0.0 +"@jupyterlab/outputarea@npm:^4.0.0, @jupyterlab/outputarea@npm:^4.0.2": + version: 4.0.2 + resolution: "@jupyterlab/outputarea@npm:4.0.2" + dependencies: + "@jupyterlab/apputils": ^4.1.2 + "@jupyterlab/nbformat": ^4.0.2 + "@jupyterlab/observables": ^5.0.2 + "@jupyterlab/rendermime": ^4.0.2 + "@jupyterlab/rendermime-interfaces": ^3.8.2 + "@jupyterlab/services": ^7.0.2 + "@jupyterlab/translation": ^4.0.2 + "@lumino/algorithm": ^2.0.0 "@lumino/coreutils": ^2.1.1 "@lumino/disposable": ^2.1.1 + "@lumino/messaging": ^2.0.0 + "@lumino/properties": ^2.0.0 "@lumino/signaling": ^2.1.1 "@lumino/widgets": ^2.1.1 - react: ^18.2.0 - checksum: a5bdf1a5cc5ea2794e152fe1d273d081c296c0e804471f398aad2edf95fb11c8d2fb79c2a6e7db96c6ac8c2b6537499afa6e77ab37d7bb17d849eb882c53d2b4 + checksum: 8387b93e7b6bf1a63495eef8a7746870e4210818ff26af5c8ecdf4b9e78433ec47b58ddaa5ab11fbf5cf143802b23a186c90589974cd408cae95330fa3960f32 languageName: node linkType: hard -"@jupyterlab/rendermime-interfaces@npm:^3.6.3, @jupyterlab/rendermime-interfaces@npm:^3.8.0": - version: 3.8.0 - resolution: "@jupyterlab/rendermime-interfaces@npm:3.8.0" +"@jupyterlab/property-inspector@npm:^4.0.2": + version: 4.0.2 + resolution: "@jupyterlab/property-inspector@npm:4.0.2" dependencies: + "@jupyterlab/application": ^4.0.2 + "@jupyterlab/translation": ^4.0.2 + "@jupyterlab/ui-components": ^4.0.2 "@lumino/coreutils": ^2.1.1 + "@lumino/disposable": ^2.1.1 + "@lumino/signaling": ^2.1.1 "@lumino/widgets": ^2.1.1 - checksum: 5e70a58a4d8aa7380a041d267972851b9b3fa5e4d68d254ede51c9e5bea4a76b38d47bc5c512e2fd84cd297f5bcaf9cbc9f73ba0824b5b910b10043309a820c7 + react: ^18.2.0 + checksum: 50b46b7519c5015e35d59433ff21caf52c0e3a52baf2cdc01cc948087204330f5b649d48b86e015a2f6b9b1ab1ab8d4d362c9a86d410dc89f16cc2e42a08d83b languageName: node linkType: hard -"@jupyterlab/rendermime-interfaces@npm:^3.8.1": - version: 3.8.1 - resolution: "@jupyterlab/rendermime-interfaces@npm:3.8.1" +"@jupyterlab/rendermime-interfaces@npm:^3.6.4, @jupyterlab/rendermime-interfaces@npm:^3.8.0, @jupyterlab/rendermime-interfaces@npm:^3.8.2": + version: 3.8.2 + resolution: "@jupyterlab/rendermime-interfaces@npm:3.8.2" dependencies: - "@lumino/coreutils": ^2.1.1 - "@lumino/widgets": ^2.1.1 - checksum: dca94c93119744383d8f45629e6649ae814a83fa59f428039eaae95c0919c6904e103a7603f84ae9b7258f3713365cbd0b2575c9452b83e6a76097f45ca5e814 + "@lumino/coreutils": ^1.11.0 || ^2.1.1 + "@lumino/widgets": ^1.37.2 || ^2.1.1 + checksum: e1164a4ad7654e5e8af0c1c2f1c8938f01a4bd07e04ff788e8b3adfaa9cb7ef07118c44513648c69263929e1658f02dcbab7aac776c6071228b0b80c8ca4e65a languageName: node linkType: hard "@jupyterlab/rendermime@npm:3": - version: 3.6.3 - resolution: "@jupyterlab/rendermime@npm:3.6.3" - dependencies: - "@jupyterlab/apputils": ^3.6.3 - "@jupyterlab/codemirror": ^3.6.3 - "@jupyterlab/coreutils": ^5.6.3 - "@jupyterlab/nbformat": ^3.6.3 - "@jupyterlab/observables": ^4.6.3 - "@jupyterlab/rendermime-interfaces": ^3.6.3 - "@jupyterlab/services": ^6.6.3 - "@jupyterlab/translation": ^3.6.3 + version: 3.6.4 + resolution: "@jupyterlab/rendermime@npm:3.6.4" + dependencies: + "@jupyterlab/apputils": ^3.6.4 + "@jupyterlab/codemirror": ^3.6.4 + "@jupyterlab/coreutils": ^5.6.4 + "@jupyterlab/nbformat": ^3.6.4 + "@jupyterlab/observables": ^4.6.4 + "@jupyterlab/rendermime-interfaces": ^3.6.4 + "@jupyterlab/services": ^6.6.4 + "@jupyterlab/translation": ^3.6.4 "@lumino/algorithm": ^1.9.0 "@lumino/coreutils": ^1.11.0 "@lumino/messaging": ^1.10.0 @@ -1951,75 +1778,55 @@ __metadata: "@lumino/widgets": ^1.37.2 lodash.escape: ^4.0.1 marked: ^4.0.17 - checksum: cae953db43d3370b3fb96c5469747120a0f88fc8d7c0e03fe73b10492c16e5e4b0787b83d9a6b3183ccf45c8b892b1d30651150157a976d5f043996614dd9230 - languageName: node - linkType: hard - -"@jupyterlab/rendermime@npm:^4.0.0": - version: 4.0.0 - resolution: "@jupyterlab/rendermime@npm:4.0.0" - dependencies: - "@jupyterlab/apputils": ^4.0.0 - "@jupyterlab/coreutils": ^6.0.0 - "@jupyterlab/nbformat": ^4.0.0 - "@jupyterlab/observables": ^5.0.0 - "@jupyterlab/rendermime-interfaces": ^3.8.0 - "@jupyterlab/services": ^7.0.0 - "@jupyterlab/translation": ^4.0.0 - "@lumino/coreutils": ^2.1.1 - "@lumino/messaging": ^2.0.0 - "@lumino/signaling": ^2.1.1 - "@lumino/widgets": ^2.1.1 - lodash.escape: ^4.0.1 - checksum: fb6373517bf2fa2557b38ccf53ba95b45c9327f86f14726dedd433f0b3466f439ab98cb2c8ae10aded9f269bf7c11225765e286aeca56f3755bada8f5d5e102a + checksum: c720fdf345f53fb9a7767be9333b3fcc909e7fa9c386ace762b3dbadc28dfffb2fa3084cdaffff918786865151f792de9b86496dfefe53db41dc7abb0ab0b42a languageName: node linkType: hard -"@jupyterlab/rendermime@npm:^4.0.1": - version: 4.0.1 - resolution: "@jupyterlab/rendermime@npm:4.0.1" - dependencies: - "@jupyterlab/apputils": ^4.1.1 - "@jupyterlab/coreutils": ^6.0.1 - "@jupyterlab/nbformat": ^4.0.1 - "@jupyterlab/observables": ^5.0.1 - "@jupyterlab/rendermime-interfaces": ^3.8.1 - "@jupyterlab/services": ^7.0.1 - "@jupyterlab/translation": ^4.0.1 +"@jupyterlab/rendermime@npm:^4.0.0, @jupyterlab/rendermime@npm:^4.0.2": + version: 4.0.2 + resolution: "@jupyterlab/rendermime@npm:4.0.2" + dependencies: + "@jupyterlab/apputils": ^4.1.2 + "@jupyterlab/coreutils": ^6.0.2 + "@jupyterlab/nbformat": ^4.0.2 + "@jupyterlab/observables": ^5.0.2 + "@jupyterlab/rendermime-interfaces": ^3.8.2 + "@jupyterlab/services": ^7.0.2 + "@jupyterlab/translation": ^4.0.2 "@lumino/coreutils": ^2.1.1 "@lumino/messaging": ^2.0.0 "@lumino/signaling": ^2.1.1 "@lumino/widgets": ^2.1.1 lodash.escape: ^4.0.1 - checksum: 8f4f01e274aa3826ebb6361e781575183f0d8e478c90d8a5a432ae670099e058b581452be66e977d93f969e75c138bbb485c5ff2a8f9d1ff186411048fd40a70 + checksum: 6118adf39cfe3c5918c9b677ff5d8dbe97ce469427f9969e1d16fba944b53d6e6c9d2c1e2deaaf928cdb94222a8941c7bb7cfc81693683fd07c08e92bc3d6cea languageName: node linkType: hard "@jupyterlab/services@npm: ^7.0.0": - version: 7.0.0 - resolution: "@jupyterlab/services@npm:7.0.0" + version: 7.0.2 + resolution: "@jupyterlab/services@npm:7.0.2" dependencies: "@jupyter/ydoc": ^1.0.2 - "@jupyterlab/coreutils": ^6.0.0 - "@jupyterlab/nbformat": ^4.0.0 - "@jupyterlab/settingregistry": ^4.0.0 - "@jupyterlab/statedb": ^4.0.0 + "@jupyterlab/coreutils": ^6.0.2 + "@jupyterlab/nbformat": ^4.0.2 + "@jupyterlab/settingregistry": ^4.0.2 + "@jupyterlab/statedb": ^4.0.2 "@lumino/coreutils": ^2.1.1 "@lumino/disposable": ^2.1.1 "@lumino/polling": ^2.1.1 "@lumino/properties": ^2.0.0 "@lumino/signaling": ^2.1.1 ws: ^8.11.0 - checksum: 96e986e8007247aa5258586263e31e48dfa6e7e7bb2a9d61f699e41b291f50c8653a9c42ae340a428c9af58946c47f7021ccb6b79b74b750cf1547b8d6c81b03 + checksum: 4a4b5328f2f50ec1d501f67d63fbfb329f37a6c090227e0aecdbbb7316d9df0e5891af47cb948958e9307a0afc52f0ddf05c2be7acb9e2f44e54cf568dc3b90c languageName: node linkType: hard -"@jupyterlab/settingregistry@npm:^4.0.0": - version: 4.0.0 - resolution: "@jupyterlab/settingregistry@npm:4.0.0" +"@jupyterlab/settingregistry@npm:^4.0.0, @jupyterlab/settingregistry@npm:^4.0.2": + version: 4.0.2 + resolution: "@jupyterlab/settingregistry@npm:4.0.2" dependencies: - "@jupyterlab/nbformat": ^4.0.0 - "@jupyterlab/statedb": ^4.0.0 + "@jupyterlab/nbformat": ^4.0.2 + "@jupyterlab/statedb": ^4.0.2 "@lumino/commands": ^2.1.1 "@lumino/coreutils": ^2.1.1 "@lumino/disposable": ^2.1.1 @@ -2029,58 +1836,55 @@ __metadata: json5: ^2.2.3 peerDependencies: react: ">=16" - checksum: f52cd36c28336ad554a4eb43f6cef7f82cb7a9161897e8b633da8c0b4519d0ed7e3e34846fec132714867b0190a9c19754e88edef31ffdf6dc2d1afe49b50041 + checksum: c2e019f70a4f19cf99bc2029c136197f2a750f319e16f8605a6f8d690b6930ac32e24678b090a09f9e949e540cf6b4214d3d3597ec119bd6896db3b456ac6299 + languageName: node + linkType: hard + +"@jupyterlab/shared-models@npm:^3.6.4": + version: 3.6.4 + resolution: "@jupyterlab/shared-models@npm:3.6.4" + dependencies: + "@jupyter/ydoc": ~0.2.4 + "@jupyterlab/nbformat": ^3.6.4 + checksum: bbbc8182c8224a9a94f25e99eb09ca43912177c181e4a452246a1c51e7da47497319d1694ea82053492acefac60f5eaf991f9fb00e15e6aea924c5c92d03c173 languageName: node linkType: hard -"@jupyterlab/statedb@npm:^3.6.3": - version: 3.6.3 - resolution: "@jupyterlab/statedb@npm:3.6.3" +"@jupyterlab/statedb@npm:^3.6.4": + version: 3.6.4 + resolution: "@jupyterlab/statedb@npm:3.6.4" dependencies: "@lumino/commands": ^1.19.0 "@lumino/coreutils": ^1.11.0 "@lumino/disposable": ^1.10.0 "@lumino/properties": ^1.8.0 "@lumino/signaling": ^1.10.0 - checksum: e3ea76524184ac62797e894ba4146a66ecdddada0167af9d8d360b0439e04dcf89d0da5b7e2fe0d02bc968796909659054a8c076eced17519773cddfb1ab0e96 - languageName: node - linkType: hard - -"@jupyterlab/statedb@npm:^4.0.0": - version: 4.0.0 - resolution: "@jupyterlab/statedb@npm:4.0.0" - dependencies: - "@lumino/commands": ^2.1.1 - "@lumino/coreutils": ^2.1.1 - "@lumino/disposable": ^2.1.1 - "@lumino/properties": ^2.0.0 - "@lumino/signaling": ^2.1.1 - checksum: e90c943b4486df3a1bd53c64c0860e40706a26f4307628f2c71168090f47f85bab2fd68529366aa74211501a6875bd6d7098e1cd976f2e7d2d197a687b6b3bd3 + checksum: f33899e9fc7909d34db598653980b6cac9d2ea4600c1ebf708fcbcc1045647d7f186f76e190f86d5e7ae642b38287220cec270df81694202ecf0ee2884755fcb languageName: node linkType: hard -"@jupyterlab/statedb@npm:^4.0.1": - version: 4.0.1 - resolution: "@jupyterlab/statedb@npm:4.0.1" +"@jupyterlab/statedb@npm:^4.0.0, @jupyterlab/statedb@npm:^4.0.2": + version: 4.0.2 + resolution: "@jupyterlab/statedb@npm:4.0.2" dependencies: "@lumino/commands": ^2.1.1 "@lumino/coreutils": ^2.1.1 "@lumino/disposable": ^2.1.1 "@lumino/properties": ^2.0.0 "@lumino/signaling": ^2.1.1 - checksum: b86bc2c20a2c6c2cf73613e4c0c7b05985234b88d3d06f515c7968f07fee751d6080e520719ee3fc3d690d0ba3d0930b91dfddfce006e8f88995f4f3332e9aad + checksum: 88fc80914f4c128ae6b0630ffe97111cc95a8edc4f34e749615aa8396262d74efcc82e02d0c7c2dcd0268b7cc35a0bfbd7455a4b6cb9203bcad488e1cbad5c25 languageName: node linkType: hard -"@jupyterlab/statusbar@npm:^3.6.3": - version: 3.6.3 - resolution: "@jupyterlab/statusbar@npm:3.6.3" +"@jupyterlab/statusbar@npm:^3.6.4": + version: 3.6.4 + resolution: "@jupyterlab/statusbar@npm:3.6.4" dependencies: - "@jupyterlab/apputils": ^3.6.3 - "@jupyterlab/codeeditor": ^3.6.3 - "@jupyterlab/services": ^6.6.3 - "@jupyterlab/translation": ^3.6.3 - "@jupyterlab/ui-components": ^3.6.3 + "@jupyterlab/apputils": ^3.6.4 + "@jupyterlab/codeeditor": ^3.6.4 + "@jupyterlab/services": ^6.6.4 + "@jupyterlab/translation": ^3.6.4 + "@jupyterlab/ui-components": ^3.6.4 "@lumino/algorithm": ^1.9.0 "@lumino/coreutils": ^1.11.0 "@lumino/disposable": ^1.10.0 @@ -2090,31 +1894,15 @@ __metadata: csstype: ~3.0.3 react: ^17.0.1 typestyle: ^2.0.4 - checksum: 42bcce68739b689e3971eb7b2e6f8f837f5f03c8d10e3b583d5455b355b41bfe62034058b7232001eddca41d4dcc20c64f6173181806e58836b37724ad13b9a2 - languageName: node - linkType: hard - -"@jupyterlab/statusbar@npm:^4.0.0": - version: 4.0.0 - resolution: "@jupyterlab/statusbar@npm:4.0.0" - dependencies: - "@jupyterlab/ui-components": ^4.0.0 - "@lumino/algorithm": ^2.0.0 - "@lumino/coreutils": ^2.1.1 - "@lumino/disposable": ^2.1.1 - "@lumino/messaging": ^2.0.0 - "@lumino/signaling": ^2.1.1 - "@lumino/widgets": ^2.1.1 - react: ^18.2.0 - checksum: 861444ba5ca001f9174b58d5a2c46e4d7947856b1c5302d3ec70e6c72d1608c77b65c792904e07fd8612f11d51ac9f30aa2ad3cbd256e701d6c12138e3f9b89f + checksum: b732ca9dc6b421db6598c1f917cc342167dc3eda237bfd77c933514c14af5a272450e4bc08304888c0249c8117c6b679e9e427d815dcdd39937d51a2a547ce62 languageName: node linkType: hard -"@jupyterlab/statusbar@npm:^4.0.1": - version: 4.0.1 - resolution: "@jupyterlab/statusbar@npm:4.0.1" +"@jupyterlab/statusbar@npm:^4.0.0, @jupyterlab/statusbar@npm:^4.0.2": + version: 4.0.2 + resolution: "@jupyterlab/statusbar@npm:4.0.2" dependencies: - "@jupyterlab/ui-components": ^4.0.1 + "@jupyterlab/ui-components": ^4.0.2 "@lumino/algorithm": ^2.0.0 "@lumino/coreutils": ^2.1.1 "@lumino/disposable": ^2.1.1 @@ -2122,133 +1910,99 @@ __metadata: "@lumino/signaling": ^2.1.1 "@lumino/widgets": ^2.1.1 react: ^18.2.0 - checksum: d4dcfd3f35acfae38bb8f73ab54ddc8fd24f697cb2198e5b8f811db761b889ae1fda3375fc66f80f913dd28d4e76111a72a4afd2995032357846f0eff2be4cee + checksum: d792eb8fca00ac5ec7d5abcb3694db5c80706ec468aa4a9bef543f02a788d80ca2a9b81def0a846da14aed22dbd4ceffe0c95c0047c5025c2e5d69fc55f739b9 languageName: node linkType: hard "@jupyterlab/theme-dark-extension@npm:^4.0.0": - version: 4.0.0 - resolution: "@jupyterlab/theme-dark-extension@npm:4.0.0" + version: 4.0.2 + resolution: "@jupyterlab/theme-dark-extension@npm:4.0.2" dependencies: - "@jupyterlab/application": ^4.0.0 - "@jupyterlab/apputils": ^4.0.0 - "@jupyterlab/translation": ^4.0.0 - checksum: 26192c3bbd5909c3e24c2811375be8afcecc355b04d0593cbfcfa8823d44caae8ca96d4dcb458db5aaca0bc42f38d68047e5339d979c245581f611e0b3172dc7 + "@jupyterlab/application": ^4.0.2 + "@jupyterlab/apputils": ^4.1.2 + "@jupyterlab/translation": ^4.0.2 + checksum: ed11816629e0d96b72c3139823f091ed9848c8f67715f2e949f70436cebb52a9ea52dca0a9ec6ea4a9fd7ac07477acf4bfd6dea8130491aeca052be294453a0d languageName: node linkType: hard "@jupyterlab/theme-light-extension@npm:^4.0.0": - version: 4.0.0 - resolution: "@jupyterlab/theme-light-extension@npm:4.0.0" - dependencies: - "@jupyterlab/application": ^4.0.0 - "@jupyterlab/apputils": ^4.0.0 - "@jupyterlab/translation": ^4.0.0 - checksum: c937cac636c2732063b6a4d92f826fac062256413a9c7fab91670dc3fa4e740ce985484f1f7c70fa17f6da0a74aa540f930efbd76a6eae979c705f5b167fa2ae - languageName: node - linkType: hard - -"@jupyterlab/toc@npm:^6.0.0": - version: 6.0.0 - resolution: "@jupyterlab/toc@npm:6.0.0" + version: 4.0.2 + resolution: "@jupyterlab/theme-light-extension@npm:4.0.2" dependencies: - "@jupyterlab/apputils": ^4.0.0 - "@jupyterlab/coreutils": ^6.0.0 - "@jupyterlab/docregistry": ^4.0.0 - "@jupyterlab/observables": ^5.0.0 - "@jupyterlab/rendermime": ^4.0.0 - "@jupyterlab/translation": ^4.0.0 - "@jupyterlab/ui-components": ^4.0.0 - "@lumino/coreutils": ^2.1.1 - "@lumino/disposable": ^2.1.1 - "@lumino/messaging": ^2.0.0 - "@lumino/signaling": ^2.1.1 - "@lumino/widgets": ^2.1.1 - react: ^18.2.0 - checksum: 7fd8cbbeaaad272355296d8ddab01c54233373d2c0457d93beae1efa2e491845980746b75f46f78f49370668a323f42ef923b76c55bf9a520548845f7c5e2d57 + "@jupyterlab/application": ^4.0.2 + "@jupyterlab/apputils": ^4.1.2 + "@jupyterlab/translation": ^4.0.2 + checksum: 79c4af4bc0142b9cbeea4c4e54feb7027bdf4967111d9a042dba82b9dd55f0975b6e229accecc838d3f41f87947370178d5308bb207faa7f81df341a6732ea64 languageName: node linkType: hard -"@jupyterlab/toc@npm:^6.0.1": - version: 6.0.1 - resolution: "@jupyterlab/toc@npm:6.0.1" - dependencies: - "@jupyterlab/apputils": ^4.1.1 - "@jupyterlab/coreutils": ^6.0.1 - "@jupyterlab/docregistry": ^4.0.1 - "@jupyterlab/observables": ^5.0.1 - "@jupyterlab/rendermime": ^4.0.1 - "@jupyterlab/translation": ^4.0.1 - "@jupyterlab/ui-components": ^4.0.1 +"@jupyterlab/toc@npm:^6.0.2": + version: 6.0.2 + resolution: "@jupyterlab/toc@npm:6.0.2" + dependencies: + "@jupyterlab/apputils": ^4.1.2 + "@jupyterlab/coreutils": ^6.0.2 + "@jupyterlab/docregistry": ^4.0.2 + "@jupyterlab/observables": ^5.0.2 + "@jupyterlab/rendermime": ^4.0.2 + "@jupyterlab/translation": ^4.0.2 + "@jupyterlab/ui-components": ^4.0.2 "@lumino/coreutils": ^2.1.1 "@lumino/disposable": ^2.1.1 "@lumino/messaging": ^2.0.0 "@lumino/signaling": ^2.1.1 "@lumino/widgets": ^2.1.1 react: ^18.2.0 - checksum: b5ce78d4339b2a61a90ae550bd76b053ceb80f8b662475e627d02ea2fd98c2e975107393f7f67d9a7f9339b5b0d790439b2e3c547ad37f339086ce3866be5d24 + checksum: de36885b17d7fa067a89f84cbdeb48ecc7c90acd6b7596745c8c96b652f6853e5d744d04dab82746f94eeea65b090c32a6153191d182c2b4d969a4834c6ec8c3 languageName: node linkType: hard "@jupyterlab/translation-extension@npm:^4.0.0": - version: 4.0.0 - resolution: "@jupyterlab/translation-extension@npm:4.0.0" + version: 4.0.2 + resolution: "@jupyterlab/translation-extension@npm:4.0.2" dependencies: - "@jupyterlab/application": ^4.0.0 - "@jupyterlab/apputils": ^4.0.0 - "@jupyterlab/mainmenu": ^4.0.0 - "@jupyterlab/settingregistry": ^4.0.0 - "@jupyterlab/translation": ^4.0.0 - checksum: c3f36b3736a19ab97fb4beb1e12d83786c82158924c6341b2a0089bf35b05cef807025d9219e3e13aec7f2cb9ea9c3038587a7c2824050106f3186c3a156e1b1 + "@jupyterlab/application": ^4.0.2 + "@jupyterlab/apputils": ^4.1.2 + "@jupyterlab/mainmenu": ^4.0.2 + "@jupyterlab/settingregistry": ^4.0.2 + "@jupyterlab/translation": ^4.0.2 + checksum: 0b6e775ba816dd2659cd61c097c600ec3fc41ba684d2cace0822ec89211e2cb3b43a70bd773fdefb539b5e599db8763a0fbe67ce6b09147061a90fe673b417c0 languageName: node linkType: hard -"@jupyterlab/translation@npm:^3.6.3": - version: 3.6.3 - resolution: "@jupyterlab/translation@npm:3.6.3" +"@jupyterlab/translation@npm:^3.6.4": + version: 3.6.4 + resolution: "@jupyterlab/translation@npm:3.6.4" dependencies: - "@jupyterlab/coreutils": ^5.6.3 - "@jupyterlab/services": ^6.6.3 - "@jupyterlab/statedb": ^3.6.3 + "@jupyterlab/coreutils": ^5.6.4 + "@jupyterlab/services": ^6.6.4 + "@jupyterlab/statedb": ^3.6.4 "@lumino/coreutils": ^1.11.0 - checksum: 924ea581685790c3fad82e7b5c351749dfa7532404f83805d43cc9154a8dd463531a671f66184a046bf8e81233d049280e23cae6a0760e8bfadd9684e8539708 - languageName: node - linkType: hard - -"@jupyterlab/translation@npm:^4.0.0, @jupyterlab/translation@npm:~4.0.0": - version: 4.0.0 - resolution: "@jupyterlab/translation@npm:4.0.0" - dependencies: - "@jupyterlab/coreutils": ^6.0.0 - "@jupyterlab/rendermime-interfaces": ^3.8.0 - "@jupyterlab/services": ^7.0.0 - "@jupyterlab/statedb": ^4.0.0 - "@lumino/coreutils": ^2.1.1 - checksum: f3124bff6e3eb9c1adbe91f60dd823a3b4a4b8b453fbf024a605f5be44463fa7eb15e176238255a775c96b50e4cc551bde757a03531e56a76db25a30feed469f + checksum: 9503f61aee7269f2ff7cef64a2bcbd501adbc0d2afe0ac0ba878023ea744658a3db89eaa61dceb144fa2047dfa42aad32a41e9c31b42968437bd1537b4bbdb9e languageName: node linkType: hard -"@jupyterlab/translation@npm:^4.0.1": - version: 4.0.1 - resolution: "@jupyterlab/translation@npm:4.0.1" +"@jupyterlab/translation@npm:^4.0.0, @jupyterlab/translation@npm:^4.0.2, @jupyterlab/translation@npm:~4.0.0": + version: 4.0.2 + resolution: "@jupyterlab/translation@npm:4.0.2" dependencies: - "@jupyterlab/coreutils": ^6.0.1 - "@jupyterlab/rendermime-interfaces": ^3.8.1 - "@jupyterlab/services": ^7.0.1 - "@jupyterlab/statedb": ^4.0.1 + "@jupyterlab/coreutils": ^6.0.2 + "@jupyterlab/rendermime-interfaces": ^3.8.2 + "@jupyterlab/services": ^7.0.2 + "@jupyterlab/statedb": ^4.0.2 "@lumino/coreutils": ^2.1.1 - checksum: a939cb60d0b6f1cdf1e03572d61e1c4630b879b4fcb5ede105148056e14f864f658da0ed32f49f83abaa1b2287a85d8c6c86fb79bf4c4b78ad8f2df59518f18b + checksum: 8f229be773607988509d059097c30bf8fbc8191d5b027221658436b2f539f6904ea48e7998276da7c52cdacd0821ea4cbdfd12ad0650ce0213525217d8735bf4 languageName: node linkType: hard -"@jupyterlab/ui-components@npm:^3.6.3": - version: 3.6.3 - resolution: "@jupyterlab/ui-components@npm:3.6.3" +"@jupyterlab/ui-components@npm:^3.6.4": + version: 3.6.4 + resolution: "@jupyterlab/ui-components@npm:3.6.4" dependencies: "@blueprintjs/core": ^3.36.0 "@blueprintjs/select": ^3.15.0 - "@jupyterlab/coreutils": ^5.6.3 - "@jupyterlab/translation": ^3.6.3 + "@jupyterlab/coreutils": ^5.6.4 + "@jupyterlab/translation": ^3.6.4 "@lumino/algorithm": ^1.9.0 "@lumino/commands": ^1.19.0 "@lumino/coreutils": ^1.11.0 @@ -2262,47 +2016,18 @@ __metadata: typestyle: ^2.0.4 peerDependencies: react: ^17.0.1 - checksum: 0809b6b83c1fca0f65cde6d395c18682366760c16a7b133d01abe487b665c3f01979ee082a676bc479ecb8c0b112d8032de8f0ad0ad2d6ec82fe114f04534b6b - languageName: node - linkType: hard - -"@jupyterlab/ui-components@npm:^4.0.0": - version: 4.0.0 - resolution: "@jupyterlab/ui-components@npm:4.0.0" - dependencies: - "@jupyterlab/coreutils": ^6.0.0 - "@jupyterlab/observables": ^5.0.0 - "@jupyterlab/rendermime-interfaces": ^3.8.0 - "@jupyterlab/translation": ^4.0.0 - "@lumino/algorithm": ^2.0.0 - "@lumino/commands": ^2.1.1 - "@lumino/coreutils": ^2.1.1 - "@lumino/disposable": ^2.1.1 - "@lumino/messaging": ^2.0.0 - "@lumino/polling": ^2.1.1 - "@lumino/properties": ^2.0.0 - "@lumino/signaling": ^2.1.1 - "@lumino/virtualdom": ^2.0.0 - "@lumino/widgets": ^2.1.1 - "@rjsf/core": ^5.1.0 - "@rjsf/utils": ^5.1.0 - react: ^18.2.0 - react-dom: ^18.2.0 - typestyle: ^2.0.4 - peerDependencies: - react: ^18.2.0 - checksum: 781a5b48acc16a098f9f88ec4cc840912100da96f9d1f64c93cd5fdb9afddd33bbeb891d0a6383ee8f12f001056d9c0beabded2a99a05d374dcf7d952e784e40 + checksum: 95d909ea6579d992d629ec93643956831f640cdfddfe07ad4c4547aaf8ce0bd6fa33aed15afa8ca78a8e9e00d4b261cb075b4cc90e48c0f82708cb1e5da6b0d5 languageName: node linkType: hard -"@jupyterlab/ui-components@npm:^4.0.0-alpha.33, @jupyterlab/ui-components@npm:^4.0.1": - version: 4.0.1 - resolution: "@jupyterlab/ui-components@npm:4.0.1" +"@jupyterlab/ui-components@npm:^4.0.0, @jupyterlab/ui-components@npm:^4.0.0-alpha.33, @jupyterlab/ui-components@npm:^4.0.2": + version: 4.0.2 + resolution: "@jupyterlab/ui-components@npm:4.0.2" dependencies: - "@jupyterlab/coreutils": ^6.0.1 - "@jupyterlab/observables": ^5.0.1 - "@jupyterlab/rendermime-interfaces": ^3.8.1 - "@jupyterlab/translation": ^4.0.1 + "@jupyterlab/coreutils": ^6.0.2 + "@jupyterlab/observables": ^5.0.2 + "@jupyterlab/rendermime-interfaces": ^3.8.2 + "@jupyterlab/translation": ^4.0.2 "@lumino/algorithm": ^2.0.0 "@lumino/commands": ^2.1.1 "@lumino/coreutils": ^2.1.1 @@ -2320,7 +2045,7 @@ __metadata: typestyle: ^2.0.4 peerDependencies: react: ^18.2.0 - checksum: 858be95a09463815f003f11c479f7bb221a1aea9364179a01f63948b602794202041007fa074e6d36dfe8e972bf65d8ab109a5ab6f315f06c2112c97970f28bf + checksum: 5e941c557609e2cec3df3cb42de358c13f73f3cd0a3b0ce6c5d473dc8d7d09772d8dc35f843f9ef1b6619700fa4a403979a93aae047517efa5d9385a8f90eac7 languageName: node linkType: hard @@ -2427,9 +2152,9 @@ __metadata: linkType: hard "@lezer/common@npm:^1.0.0, @lezer/common@npm:^1.0.2": - version: 1.0.2 - resolution: "@lezer/common@npm:1.0.2" - checksum: bbcc58e07be02652bf0700d2856042ec089d5be0b95893d628b3e18192ade864fac83b61b19653e10b9f1472261a178b12318d934e9004edd5483a577c0db56b + version: 1.0.3 + resolution: "@lezer/common@npm:1.0.3" + checksum: cc90dc2f0aeaebeb3fe886cbd27f8b1e8bee817d8c2efff178604807debd68c5db820fd23afb830962780063d21891afbdf564420221faca2822e77bc6327184 languageName: node linkType: hard @@ -2466,11 +2191,11 @@ __metadata: linkType: hard "@lezer/highlight@npm:^1.0.0, @lezer/highlight@npm:^1.1.3, @lezer/highlight@npm:^1.1.4": - version: 1.1.4 - resolution: "@lezer/highlight@npm:1.1.4" + version: 1.1.6 + resolution: "@lezer/highlight@npm:1.1.6" dependencies: "@lezer/common": ^1.0.0 - checksum: 30e848c02839bfcd9472fcd6e74d71cba12379cef38f27d0c6cab0e6831f92150cfc629d267a40cc31f84cf46ac0a935400163fdf931b2672c516bec29417485 + checksum: 411a702394c4c996b7d7f145a38f3a85a8cc698b3918acc7121c629255bb76d4ab383753f69009e011dc415210c6acbbb5b27bde613259ab67e600b29397b03b languageName: node linkType: hard @@ -2516,11 +2241,11 @@ __metadata: linkType: hard "@lezer/lr@npm:^1.0.0, @lezer/lr@npm:^1.1.0, @lezer/lr@npm:^1.3.0": - version: 1.3.4 - resolution: "@lezer/lr@npm:1.3.4" + version: 1.3.6 + resolution: "@lezer/lr@npm:1.3.6" dependencies: "@lezer/common": ^1.0.0 - checksum: 58bc25a9ba891dc6ca713fc8768706935e65d6e54d79a8ddb40c742cc799e87eddf4f49a6d6566a649c4726a9ab79a4200d36c9351608285a9bee6cdf3b33341 + checksum: b2bbcfecc01bd9c801f3ee636ceda333adbbea1f274017cec6f315a23346e7a035a984f325d4f1cd14b157d74d28badda6f794514c29a0b078f7fb3357cdfc32 languageName: node linkType: hard @@ -2544,13 +2269,13 @@ __metadata: languageName: node linkType: hard -"@lezer/python@npm:^1.0.0": - version: 1.1.6 - resolution: "@lezer/python@npm:1.1.6" +"@lezer/python@npm:^1.1.4": + version: 1.1.7 + resolution: "@lezer/python@npm:1.1.7" dependencies: "@lezer/highlight": ^1.0.0 "@lezer/lr": ^1.0.0 - checksum: 3a75790816612c7da6dfd95cf40ab3c6a2c9864d18170eae7ba933c09c9e0a7527a48a477a6b54b4cce85fd874d04af6a0b25713897ebe035eebc929cb66f125 + checksum: 7ae6b4ae770b3cd849eee3d8fb1d904745aee202a76e7db0a079725a97571c4778fa5bd74878206e44aa3349044bf056008e19e7a90650fad93d51890f685077 languageName: node linkType: hard @@ -2834,7 +2559,7 @@ __metadata: languageName: node linkType: hard -"@lumino/widgets@npm:^2.0.0, @lumino/widgets@npm:^2.0.0-alpha.6, @lumino/widgets@npm:^2.1.0, @lumino/widgets@npm:^2.1.1": +"@lumino/widgets@npm:^1.37.2 || ^2.1.1, @lumino/widgets@npm:^2.0.0, @lumino/widgets@npm:^2.0.0-alpha.6, @lumino/widgets@npm:^2.1.0, @lumino/widgets@npm:^2.1.1": version: 2.1.1 resolution: "@lumino/widgets@npm:2.1.1" dependencies: @@ -2957,9 +2682,9 @@ __metadata: languageName: node linkType: hard -"@npmcli/git@npm:^4.0.0": - version: 4.0.4 - resolution: "@npmcli/git@npm:4.0.4" +"@npmcli/git@npm:^4.0.0, @npmcli/git@npm:^4.1.0": + version: 4.1.0 + resolution: "@npmcli/git@npm:4.1.0" dependencies: "@npmcli/promise-spawn": ^6.0.0 lru-cache: ^7.4.4 @@ -2969,7 +2694,7 @@ __metadata: promise-retry: ^2.0.1 semver: ^7.3.5 which: ^3.0.0 - checksum: fd8ad331138c906e090a0f0d3c1662be140fbb39f0dcf4259ee69e8dcb1a939385996dd003d7abb9ce61739e4119e2ea26b2be7ad396988ec1c1ed83179af032 + checksum: 37efb926593f294eb263297cdfffec9141234f977b89a7a6b95ff7a72576c1d7f053f4961bc4b5e79dea6476fe08e0f3c1ed9e4aeb84169e357ff757a6a70073 languageName: node linkType: hard @@ -3041,14 +2766,16 @@ __metadata: linkType: hard "@npmcli/package-json@npm:^3.0.0": - version: 3.1.0 - resolution: "@npmcli/package-json@npm:3.1.0" + version: 3.1.1 + resolution: "@npmcli/package-json@npm:3.1.1" dependencies: + "@npmcli/git": ^4.1.0 glob: ^10.2.2 json-parse-even-better-errors: ^3.0.0 normalize-package-data: ^5.0.0 npm-normalize-package-bin: ^3.0.1 - checksum: bcc3a464c681c48b43d245464e9c49aefd5686b3bce164fcd34e2271590c0bbb64e43342552d8302115295d47f9f00d996b65e724bdc092d3760ad27172cda20 + proc-log: ^3.0.0 + checksum: 8c86511fa7a635e4c72e798e3e83fb562e48255e8bf3dd5cdac278cc0aceffc70c123437b24200afe7929f240c88bac17bd37b3963c09b396adf9247bfbea050 languageName: node linkType: hard @@ -3204,11 +2931,9 @@ __metadata: linkType: hard "@octokit/auth-token@npm:^3.0.0": - version: 3.0.3 - resolution: "@octokit/auth-token@npm:3.0.3" - dependencies: - "@octokit/types": ^9.0.0 - checksum: 9b3f569cec1b7e0aa88ab6da68aed4b49b6652261bd957257541fabaf6a4d4ed99f908153cc3dd2fe15b8b0ccaff8caaafaa50bb1a4de3925b0954a47cca1900 + version: 3.0.4 + resolution: "@octokit/auth-token@npm:3.0.4" + checksum: 42f533a873d4192e6df406b3176141c1f95287423ebdc4cf23a38bb77ee00ccbc0e60e3fbd5874234fc2ed2e67bbc6035e3b0561dacc1d078adb5c4ced3579e3 languageName: node linkType: hard @@ -3228,13 +2953,13 @@ __metadata: linkType: hard "@octokit/endpoint@npm:^7.0.0": - version: 7.0.5 - resolution: "@octokit/endpoint@npm:7.0.5" + version: 7.0.6 + resolution: "@octokit/endpoint@npm:7.0.6" dependencies: "@octokit/types": ^9.0.0 is-plain-object: ^5.0.0 universal-user-agent: ^6.0.0 - checksum: 81c9e9eabf50e48940cceff7c4d7fbc9327190296507cfe8a199ea00cd492caf8f18a841caf4e3619828924b481996eb16091826db6b5a649bee44c8718ecaa9 + checksum: 7caebf30ceec50eb7f253341ed419df355232f03d4638a95c178ee96620400db7e4a5e15d89773fe14db19b8653d4ab4cc81b2e93ca0c760b4e0f7eb7ad80301 languageName: node linkType: hard @@ -3263,10 +2988,10 @@ __metadata: languageName: node linkType: hard -"@octokit/openapi-types@npm:^17.2.0": - version: 17.2.0 - resolution: "@octokit/openapi-types@npm:17.2.0" - checksum: 29995e34f98d9d64ba234d64a7ae9486c66d2bb6ac0d30d9a42decdbb4b03b13e811769b1e1505a1748ff20c22d35724985e6c128cd11a3f14f8322201520093 +"@octokit/openapi-types@npm:^18.0.0": + version: 18.0.0 + resolution: "@octokit/openapi-types@npm:18.0.0" + checksum: d487d6c6c1965e583eee417d567e4fe3357a98953fc49bce1a88487e7908e9b5dbb3e98f60dfa340e23b1792725fbc006295aea071c5667a813b9c098185b56f languageName: node linkType: hard @@ -3365,11 +3090,11 @@ __metadata: linkType: hard "@octokit/types@npm:^9.0.0": - version: 9.2.3 - resolution: "@octokit/types@npm:9.2.3" + version: 9.3.1 + resolution: "@octokit/types@npm:9.3.1" dependencies: - "@octokit/openapi-types": ^17.2.0 - checksum: 6806413089f20a8302237ef85aa2e83bace7499e95fdc3db2d304f9e6dc6e87fb6766452f92e08ddf475046b69753e11beabaeff6733c38bdaf3e21dfd7d3341 + "@octokit/openapi-types": ^18.0.0 + checksum: 56fce104114730553c79175261f288a263055af4a6de848130fa964940460ee4fe8fa610f33dd0862c2c178d7d97f703e44a799898f3b52583e7ce5ae595f8ff languageName: node linkType: hard @@ -3431,24 +3156,24 @@ __metadata: linkType: hard "@rjsf/core@npm:^5.1.0": - version: 5.7.2 - resolution: "@rjsf/core@npm:5.7.2" + version: 5.8.1 + resolution: "@rjsf/core@npm:5.8.1" dependencies: lodash: ^4.17.21 lodash-es: ^4.17.21 - markdown-to-jsx: ^7.2.0 + markdown-to-jsx: ^7.2.1 nanoid: ^3.3.6 prop-types: ^15.8.1 peerDependencies: - "@rjsf/utils": 5.7.x + "@rjsf/utils": ^5.8.x react: ^16.14.0 || >=17 - checksum: a2c40a71db35b4609a41bebb173060ff0fdab7007cbd1fe6f958e50fb15b2ecef4f0d63648d882b5af59b35327c1d92c34178f1609c5b9d9f7ca77b2704ca427 + checksum: 616691f66285c89d7fb378bbad787960adcf7e8941b3287dce543f022dce3106b80d41cf1f41de926cd8dbe1f5006c5fcc0a6597bbca7ee9a13d422b967bb986 languageName: node linkType: hard "@rjsf/utils@npm:^5.1.0": - version: 5.7.2 - resolution: "@rjsf/utils@npm:5.7.2" + version: 5.8.1 + resolution: "@rjsf/utils@npm:5.8.1" dependencies: json-schema-merge-allof: ^0.8.1 jsonpointer: ^5.0.1 @@ -3457,21 +3182,21 @@ __metadata: react-is: ^18.2.0 peerDependencies: react: ^16.14.0 || >=17 - checksum: 77dd1365b509fb246094dbb20c02917788fea0ff18b3afd7dcc2f9330b6310a3ca5e1d7983e8eee56c0734ebd45bc110e862b9366ef9616fad351304d514262a + checksum: 7a567ab45e62de01020a6bccd1da20e55a7a484bc5d367e3ded56ba3971d196646b690767c4f2d2840b2df1acdf5cd5611c892b1ce3c59defdd6201a107e6ff4 languageName: node linkType: hard "@rjsf/validator-ajv8@npm:^5.1.0": - version: 5.7.2 - resolution: "@rjsf/validator-ajv8@npm:5.7.2" + version: 5.8.1 + resolution: "@rjsf/validator-ajv8@npm:5.8.1" dependencies: ajv: ^8.12.0 ajv-formats: ^2.1.1 lodash: ^4.17.21 lodash-es: ^4.17.21 peerDependencies: - "@rjsf/utils": 5.7.x - checksum: 420827540c22cb661c091fe611157a4d1781174e94401261d551651ba556125baf7a591100dd3448de6128d87b62a3cdb03ffe4f65cf0a5c881889638131ff31 + "@rjsf/utils": ^5.8.x + checksum: 49d7f600696a8c805728b8d1fd0ac50c1b388e657b17df7125210ccd1b636c30f56b8a23e913d3979f8329d222333f7cd4f47032ea0acc20a28d56e66ab4db32 languageName: node linkType: hard @@ -3482,6 +3207,17 @@ __metadata: languageName: node linkType: hard +"@sigstore/tuf@npm:^1.0.0": + version: 1.0.0 + resolution: "@sigstore/tuf@npm:1.0.0" + dependencies: + "@sigstore/protobuf-specs": ^0.1.0 + make-fetch-happen: ^11.0.1 + tuf-js: ^1.1.3 + checksum: f1bbcb689ba22d31f6eefd06588864b83e346fddb93a11235f5fd8076d8fd88a9f6001eb2118f54babfea9e38474994afc14dac0c961e8d51bfd4970b4b633e4 + languageName: node + linkType: hard + "@sinclair/typebox@npm:^0.25.16": version: 0.25.24 resolution: "@sinclair/typebox@npm:0.25.24" @@ -3548,12 +3284,12 @@ __metadata: linkType: hard "@types/eslint@npm:*": - version: 8.40.0 - resolution: "@types/eslint@npm:8.40.0" + version: 8.40.1 + resolution: "@types/eslint@npm:8.40.1" dependencies: "@types/estree": "*" "@types/json-schema": "*" - checksum: bab41d7f590182e743853cdd5bf5359cbc4240df986223457c8a5f5674743a3fe2a8626704b65bf9121dfa0ce0a0efd760da8339cc329018f229d4d2d6ee1c43 + checksum: c210e4741f11d9fda0e06f4444a43f64af79ea72d60cd11ec4acc232374b34cbb49634286f949783d55d8a66b44fa0da041b6a90cfe37fcdf7f796b81776318b languageName: node linkType: hard @@ -3584,26 +3320,19 @@ __metadata: linkType: hard "@types/json-schema@npm:*, @types/json-schema@npm:^7.0.5, @types/json-schema@npm:^7.0.6, @types/json-schema@npm:^7.0.7, @types/json-schema@npm:^7.0.8, @types/json-schema@npm:^7.0.9": - version: 7.0.11 - resolution: "@types/json-schema@npm:7.0.11" - checksum: 527bddfe62db9012fccd7627794bd4c71beb77601861055d87e3ee464f2217c85fca7a4b56ae677478367bbd248dbde13553312b7d4dbc702a2f2bbf60c4018d + version: 7.0.12 + resolution: "@types/json-schema@npm:7.0.12" + checksum: 00239e97234eeb5ceefb0c1875d98ade6e922bfec39dd365ec6bd360b5c2f825e612ac4f6e5f1d13601b8b30f378f15e6faa805a3a732f4a1bbe61915163d293 languageName: node linkType: hard -"@types/lodash@npm:^4.14.134": +"@types/lodash@npm:^4.14.134, @types/lodash@npm:^4.14.168": version: 4.14.195 resolution: "@types/lodash@npm:4.14.195" checksum: 39b75ca635b3fa943d17d3d3aabc750babe4c8212485a4df166fe0516e39288e14b0c60afc6e21913cc0e5a84734633c71e617e2bd14eaa1cf51b8d7799c432e languageName: node linkType: hard -"@types/lodash@npm:^4.14.168": - version: 4.14.194 - resolution: "@types/lodash@npm:4.14.194" - checksum: 113f34831c461469d91feca2dde737f88487732898b4d25e9eb23b087bb193985f864d1e1e0f3b777edc5022e460443588b6000a3b2348c966f72d17eedc35ea - languageName: node - linkType: hard - "@types/minimatch@npm:^3.0.3": version: 3.0.5 resolution: "@types/minimatch@npm:3.0.5" @@ -3626,16 +3355,16 @@ __metadata: linkType: hard "@types/node@npm:*": - version: 20.2.3 - resolution: "@types/node@npm:20.2.3" - checksum: 576065e8fc1fa45798c8f59a6bf809169582d04abc2e25fab1a048ffc734975b9992ae31be0d960cf705a21fb37112f7fcde11aa322beddf7491e73d5a5a988c + version: 20.3.0 + resolution: "@types/node@npm:20.3.0" + checksum: 613e878174febc0104dae210088645cbb5096a19ae5fdf57fbc06fa6ef71755b839858c2b313fb8c1df8b7c6660e1b5f7a64db2126af9d47d1d9238e2bc0a86d languageName: node linkType: hard "@types/node@npm:^18.15.11": - version: 18.16.14 - resolution: "@types/node@npm:18.16.14" - checksum: c11cb3c787236414efe58240ae71854971592554d82ff9d201876ce7cafd51c37aaa001c63602d002e8238614d7331bd6d48ac4c1c0caa826799980b6846fb08 + version: 18.16.17 + resolution: "@types/node@npm:18.16.17" + checksum: 2f7e3a552d525ef4b7a2620ef5ef59b3fdfb1d8ab20627b537e090732b35c2bd103944933d347a319cc7d478b3866b0d1bc3d629ee5899ca663a4547ca078cee languageName: node linkType: hard @@ -3654,9 +3383,9 @@ __metadata: linkType: hard "@types/prettier@npm:^2.1.5": - version: 2.7.2 - resolution: "@types/prettier@npm:2.7.2" - checksum: b47d76a5252265f8d25dd2fe2a5a61dc43ba0e6a96ffdd00c594cb4fd74c1982c2e346497e3472805d97915407a09423804cc2110a0b8e1b22cffcab246479b7 + version: 2.7.3 + resolution: "@types/prettier@npm:2.7.3" + checksum: 705384209cea6d1433ff6c187c80dcc0b95d99d5c5ce21a46a9a58060c527973506822e428789d842761e0280d25e3359300f017fbe77b9755bc772ab3dc2f83 languageName: node linkType: hard @@ -3668,13 +3397,13 @@ __metadata: linkType: hard "@types/react@npm:^18.0.26": - version: 18.2.6 - resolution: "@types/react@npm:18.2.6" + version: 18.2.11 + resolution: "@types/react@npm:18.2.11" dependencies: "@types/prop-types": "*" "@types/scheduler": "*" csstype: ^3.0.2 - checksum: dea9d232d8df7ac357367a69dcb557711ab3d5501807ffa77cebeee73d49ee94d095f298e36853c63ed47cce097eee4c7eae2aaa8c02fac3f0171ec1b523a819 + checksum: 3dcc326ea87468a06079b6c3a9e0f9a98a8438526aba81d29820954e2cb343b6beb8ca3d6a212878797a909fbd3199d07a4d819cd3efbbdba8c22039c06f1ed8 languageName: node linkType: hard @@ -4003,36 +3732,36 @@ __metadata: languageName: node linkType: hard -"@webpack-cli/configtest@npm:^2.1.0": - version: 2.1.0 - resolution: "@webpack-cli/configtest@npm:2.1.0" +"@webpack-cli/configtest@npm:^2.1.1": + version: 2.1.1 + resolution: "@webpack-cli/configtest@npm:2.1.1" peerDependencies: webpack: 5.x.x webpack-cli: 5.x.x - checksum: b875fccd8be9a936924e24986725823347703e3eb72ea884e74669ca20f007704e859855a6a05940d5d3805ce2fc08b183a0f1658d5395b5454b3f5f88293081 + checksum: 9f9f9145c2d05471fc83d426db1df85cf49f329836b0c4b9f46b6948bed4b013464c00622b136d2a0a26993ce2306976682592245b08ee717500b1db45009a72 languageName: node linkType: hard -"@webpack-cli/info@npm:^2.0.1": - version: 2.0.1 - resolution: "@webpack-cli/info@npm:2.0.1" +"@webpack-cli/info@npm:^2.0.2": + version: 2.0.2 + resolution: "@webpack-cli/info@npm:2.0.2" peerDependencies: webpack: 5.x.x webpack-cli: 5.x.x - checksum: b8fba49fee10d297c2affb0b064c9a81e9038d75517c6728fb85f9fb254cae634e5d33e696dac5171e6944ae329d85fddac72f781c7d833f7e9dfe43151ce60d + checksum: 8f9a178afca5c82e113aed1efa552d64ee5ae4fdff63fe747c096a981ec74f18a5d07bd6e89bbe6715c3e57d96eea024a410e58977169489fe1df044c10dd94e languageName: node linkType: hard -"@webpack-cli/serve@npm:^2.0.4": - version: 2.0.4 - resolution: "@webpack-cli/serve@npm:2.0.4" +"@webpack-cli/serve@npm:^2.0.5": + version: 2.0.5 + resolution: "@webpack-cli/serve@npm:2.0.5" peerDependencies: webpack: 5.x.x webpack-cli: 5.x.x peerDependenciesMeta: webpack-dev-server: optional: true - checksum: 561ea2e6eb551415f0b1675393a8480e1201293fe37eae334cbb1fdc466986668cca76ca1ca327ada9b498eae27cbecef0793e3bb5677288f1a5216cad414efe + checksum: 75f0e54681796d567a71ac3e2781d2901a8d8cf1cdfc82f261034dddac59a8343e8c3bc5e32b4bb9d6766759ba49fb29a5cd86ef1701d79c506fe886bb63ac75 languageName: node linkType: hard @@ -4058,12 +3787,12 @@ __metadata: linkType: hard "@yarnpkg/parsers@npm:^3.0.0-rc.18": - version: 3.0.0-rc.44 - resolution: "@yarnpkg/parsers@npm:3.0.0-rc.44" + version: 3.0.0-rc.45 + resolution: "@yarnpkg/parsers@npm:3.0.0-rc.45" dependencies: js-yaml: ^3.10.0 tslib: ^2.4.0 - checksum: 45b96a06ce5eb2190c172b206670b15f2268c9aee9ab18d49f5facdcc0d669412b1ae4f7c73670a1551509f9300a4906059654cc8de0d8f82934b373b3baddee + checksum: 10f3b10e2e9b0ac97f4fdc0a97e5f08d149c3e33bd09244bd148fe2c5ff3986c39fcc281129d2154aa4ce885bd5decf66feb7131327c2633d3f90f35c0bf71d2 languageName: node linkType: hard @@ -4146,7 +3875,7 @@ __metadata: languageName: node linkType: hard -"acorn-import-assertions@npm:^1.7.6, acorn-import-assertions@npm:^1.9.0": +"acorn-import-assertions@npm:^1.9.0": version: 1.9.0 resolution: "acorn-import-assertions@npm:1.9.0" peerDependencies: @@ -4164,7 +3893,7 @@ __metadata: languageName: node linkType: hard -"acorn@npm:^8.5.0, acorn@npm:^8.7.1, acorn@npm:^8.8.0": +"acorn@npm:^8.7.1, acorn@npm:^8.8.0, acorn@npm:^8.8.2": version: 8.8.2 resolution: "acorn@npm:8.8.2" bin: @@ -4589,16 +4318,16 @@ __metadata: linkType: hard "browserslist@npm:^4.14.5": - version: 4.21.5 - resolution: "browserslist@npm:4.21.5" + version: 4.21.7 + resolution: "browserslist@npm:4.21.7" dependencies: - caniuse-lite: ^1.0.30001449 - electron-to-chromium: ^1.4.284 - node-releases: ^2.0.8 - update-browserslist-db: ^1.0.10 + caniuse-lite: ^1.0.30001489 + electron-to-chromium: ^1.4.411 + node-releases: ^2.0.12 + update-browserslist-db: ^1.0.11 bin: browserslist: cli.js - checksum: 9755986b22e73a6a1497fd8797aedd88e04270be33ce66ed5d85a1c8a798292a65e222b0f251bafa1c2522261e237d73b08b58689d4920a607e5a53d56dc4706 + checksum: 3d0d025e6d381c4db5e71b538258952660ba574c060832095f182a9877ca798836fa550736269e669a2080e486f0cfdf5d3bcf2769b9f7cf123f6c6b8c005f8f languageName: node linkType: hard @@ -4747,10 +4476,10 @@ __metadata: languageName: node linkType: hard -"caniuse-lite@npm:^1.0.30001449": - version: 1.0.30001489 - resolution: "caniuse-lite@npm:1.0.30001489" - checksum: 94585a351fd7661b855c83eace474db0ee5a617159b46f2eff1f6fe4b85d7a205418471fdec8cf5cd647a7f79958706d5e664c0bbf3c7c09118b35db9bb95a1b +"caniuse-lite@npm:^1.0.30001489": + version: 1.0.30001502 + resolution: "caniuse-lite@npm:1.0.30001502" + checksum: 801a9fd4b635082a976a2a0238c59e106f37238f93afddb504b88fa434d521cd9c600d8d9f305a0f4611c0b53c6d6c164e81ee38f0130ff46636c3b280195a0c languageName: node linkType: hard @@ -5230,9 +4959,9 @@ __metadata: linkType: hard "core-js-pure@npm:^3.6.5": - version: 3.30.2 - resolution: "core-js-pure@npm:3.30.2" - checksum: e0e012fe94e38663d837410baac62efe05d0c7431e3fbaa70c65f51eb980da9c3add225eca04208d576bc0d92cefeca9a4f7671a65fd84fd7dfc92d8618dddfd + version: 3.31.0 + resolution: "core-js-pure@npm:3.31.0" + checksum: 2bc5d2f6c3c9732fd5c066529b8d41fae9c746206ddf7614712dc4120a9efd47bf894df4fc600fde8c04324171c1999869798b48b23fca128eff5f09f58cd2f6 languageName: node linkType: hard @@ -5302,20 +5031,20 @@ __metadata: linkType: hard "css-loader@npm:^6.7.1": - version: 6.7.4 - resolution: "css-loader@npm:6.7.4" + version: 6.8.1 + resolution: "css-loader@npm:6.8.1" dependencies: icss-utils: ^5.1.0 postcss: ^8.4.21 postcss-modules-extract-imports: ^3.0.0 - postcss-modules-local-by-default: ^4.0.1 + postcss-modules-local-by-default: ^4.0.3 postcss-modules-scope: ^3.0.0 postcss-modules-values: ^4.0.0 postcss-value-parser: ^4.2.0 semver: ^7.3.8 peerDependencies: webpack: ^5.0.0 - checksum: 6021fa9e375d767b9675e295c1513f2ee4ae04f76d9de69a75b8446e05f6e02b2170407ea72939925b788dcd5aa308527f6b41be3870dc1f4b0bfff8d2532c6e + checksum: 7c1784247bdbe76dc5c55fb1ac84f1d4177a74c47259942c9cfdb7a8e6baef11967a0bc85ac285f26bd26d5059decb848af8154a03fdb4f4894f41212f45eef3 languageName: node linkType: hard @@ -5687,10 +5416,10 @@ __metadata: languageName: node linkType: hard -"electron-to-chromium@npm:^1.4.284": - version: 1.4.404 - resolution: "electron-to-chromium@npm:1.4.404" - checksum: 40e9ce607877e5d2a0578e78a3bd461ca6574cefb738f2dd82c171fad124c833cb078844947d9d21d6e6cf13a7d9b75b500ef4522c8cc67e99ad47d6b36cf078 +"electron-to-chromium@npm:^1.4.411": + version: 1.4.427 + resolution: "electron-to-chromium@npm:1.4.427" + checksum: 5f8493e6071bed2f34c701a62bd81453e41cee7ab9bda0f93b6039d1456d15f9aa6a4b59eda4e5afe5e035311b6b9043c7c9275c631c690bd202ae3226a1df66 languageName: node linkType: hard @@ -5745,17 +5474,7 @@ __metadata: languageName: node linkType: hard -"enhanced-resolve@npm:^5.0.0, enhanced-resolve@npm:^5.14.0": - version: 5.14.0 - resolution: "enhanced-resolve@npm:5.14.0" - dependencies: - graceful-fs: ^4.2.4 - tapable: ^2.2.0 - checksum: fff1aaebbf376371e5df4502e111967f6247c37611ad3550e4e7fca657f6dcb29ef7ffe88bf14e5010b78997f1ddd984a8db97af87ee0a5477771398fd326f5b - languageName: node - linkType: hard - -"enhanced-resolve@npm:^5.14.1": +"enhanced-resolve@npm:^5.0.0, enhanced-resolve@npm:^5.14.1": version: 5.14.1 resolution: "enhanced-resolve@npm:5.14.1" dependencies: @@ -5867,9 +5586,9 @@ __metadata: linkType: hard "es-module-lexer@npm:^1.2.1": - version: 1.2.1 - resolution: "es-module-lexer@npm:1.2.1" - checksum: c4145b853e1491eaa5d591e4580926d242978c38071ad3d09165c3b6d50314cc0ae3bf6e1dec81a9e53768b9299df2063d2e4a67d7742a5029ddeae6c4fc26f0 + version: 1.3.0 + resolution: "es-module-lexer@npm:1.3.0" + checksum: 48fd9f504a9d2a894126f75c8b7ccc6273a289983e9b67255f165bfd9ae765d50100218251e94e702ca567826905ea2f7b3b4a0c4d74d3ce99cce3a2a606a238 languageName: node linkType: hard @@ -6775,8 +6494,8 @@ __metadata: linkType: hard "glob@npm:^10.2.2": - version: 10.2.6 - resolution: "glob@npm:10.2.6" + version: 10.2.7 + resolution: "glob@npm:10.2.7" dependencies: foreground-child: ^3.1.0 jackspeak: ^2.0.3 @@ -6785,7 +6504,7 @@ __metadata: path-scurry: ^1.7.0 bin: glob: dist/cjs/src/bin.js - checksum: 94c5964bfa9df95207a69a3bd9b07b99ea7b5ba1f36dd73a8914378cee9436a205b9b5bdff58872abc238684ea7f4b4936e932155b8885250818bcc8d5321ddf + checksum: 555205a74607d6f8d9874ba888924b305b5ea1abfaa2e9ccb11ac713d040aac7edbf7d8702a2f4a1cd81b2d7666412170ce7ef061d33cddde189dae8c1a1a054 languageName: node linkType: hard @@ -7705,8 +7424,8 @@ __metadata: linkType: hard "jake@npm:^10.8.5": - version: 10.8.6 - resolution: "jake@npm:10.8.6" + version: 10.8.7 + resolution: "jake@npm:10.8.7" dependencies: async: ^3.2.3 chalk: ^4.0.2 @@ -7714,7 +7433,7 @@ __metadata: minimatch: ^3.1.2 bin: jake: bin/cli.js - checksum: eebebd3ca62a01ced630afc116f429d727d34bebe58a9424c0d5a0618ad6c1db893163fb4fbcdff01f34d34d6d63c0dd2448de598270bcd27d9440630de4aeea + checksum: a23fd2273fb13f0d0d845502d02c791fd55ef5c6a2d207df72f72d8e1eac6d2b8ffa6caf660bc8006b3242e0daaa88a3ecc600194d72b5c6016ad56e9cd43553 languageName: node linkType: hard @@ -7737,9 +7456,9 @@ __metadata: linkType: hard "js-sdsl@npm:^4.1.4": - version: 4.4.0 - resolution: "js-sdsl@npm:4.4.0" - checksum: 7bb08a2d746ab7ff742720339aa006c631afe05e77d11eda988c1c35fae8e03e492e4e347e883e786e3ce6170685d4780c125619111f0730c11fdb41b04059c7 + version: 4.4.1 + resolution: "js-sdsl@npm:4.4.1" + checksum: ba445b53531f2f353f8f66ed8c7edc7942c9bac68707161aa70528fa8ee9a89805d170cff171aa40bdac1aed5dfe97dce6f929e6f759a487ed619387a5ea1365 languageName: node linkType: hard @@ -8166,19 +7885,7 @@ __metadata: languageName: node linkType: hard -"lib0@npm:^0.2.31, lib0@npm:^0.2.42, lib0@npm:^0.2.52, lib0@npm:^0.2.62, lib0@npm:^0.2.74": - version: 0.2.74 - resolution: "lib0@npm:0.2.74" - dependencies: - isomorphic.js: ^0.2.4 - bin: - 0gentesthtml: bin/gentesthtml.js - 0serve: bin/0serve.js - checksum: a468fc2f8d231bdcb305f04706d0e568ad53a0aa968aaf3d1769fcfbf326a5b158e98d86c0aa8edf26b3223cb60687480f15cfc0d07c681333f9d9d55dd7c802 - languageName: node - linkType: hard - -"lib0@npm:^0.2.76": +"lib0@npm:^0.2.31, lib0@npm:^0.2.42, lib0@npm:^0.2.52, lib0@npm:^0.2.62, lib0@npm:^0.2.74, lib0@npm:^0.2.76": version: 0.2.78 resolution: "lib0@npm:0.2.78" dependencies: @@ -8402,9 +8109,9 @@ __metadata: linkType: hard "lru-cache@npm:^9.1.1": - version: 9.1.1 - resolution: "lru-cache@npm:9.1.1" - checksum: 4d703bb9b66216bbee55ead82a9682820a2b6acbdfca491b235390b1ef1056000a032d56dfb373fdf9ad4492f1fa9d04cc9a05a77f25bd7ce6901d21ad9b68b7 + version: 9.1.2 + resolution: "lru-cache@npm:9.1.2" + checksum: d3415634be3908909081fc4c56371a8d562d9081eba70543d86871b978702fffd0e9e362b83921b27a29ae2b37b90f55675aad770a54ac83bb3e4de5049d4b15 languageName: node linkType: hard @@ -8511,12 +8218,12 @@ __metadata: languageName: node linkType: hard -"markdown-to-jsx@npm:^7.2.0": - version: 7.2.0 - resolution: "markdown-to-jsx@npm:7.2.0" +"markdown-to-jsx@npm:^7.2.1": + version: 7.2.1 + resolution: "markdown-to-jsx@npm:7.2.1" peerDependencies: react: ">= 0.14.0" - checksum: ea417e684d7eec9f1beebc9423aba377116ef77c3cd83a2d622df1b9030ffef99aa9b3f431192b94f3237943a33560e6dda9be8a4c1d25187518d09986dad22f + checksum: 0c8c715229044401ea48c2fc26c2554464100074959dafacdd9e4a0e849f0a190b02f39edb373bbdd95e38b8f910074b83b63d08752b8ae6be6ddcfb40ea50a0 languageName: node linkType: hard @@ -9065,10 +8772,10 @@ __metadata: languageName: node linkType: hard -"node-releases@npm:^2.0.8": - version: 2.0.11 - resolution: "node-releases@npm:2.0.11" - checksum: ade1c8e19852aa7d7b45691c2708e6275703dd4994b16bc191cdbf66add29ccf87c595ecdb03a39db54a8aaba645f228bccd7d9477e4066f1d97a94f857dae9d +"node-releases@npm:^2.0.12": + version: 2.0.12 + resolution: "node-releases@npm:2.0.12" + checksum: b8c56db82c4642a0f443332b331a4396dae452a2ac5a65c8dbd93ef89ecb2fbb0da9d42ac5366d4764973febadca816cf7587dad492dce18d2a6b2af59cda260 languageName: node linkType: hard @@ -9980,16 +9687,16 @@ __metadata: languageName: node linkType: hard -"postcss-modules-local-by-default@npm:^4.0.1": - version: 4.0.2 - resolution: "postcss-modules-local-by-default@npm:4.0.2" +"postcss-modules-local-by-default@npm:^4.0.3": + version: 4.0.3 + resolution: "postcss-modules-local-by-default@npm:4.0.3" dependencies: icss-utils: ^5.0.0 postcss-selector-parser: ^6.0.2 postcss-value-parser: ^4.1.0 peerDependencies: postcss: ^8.1.0 - checksum: 2f3a12a16f1c19bc5776aa761fab836502a8efc9ce5fd48aa7597c728f62550dd7f9f72ca2f2791a21e7efb377d180c12bec50270ceb4e5bc80d602d743215b9 + checksum: 2f8083687f3d6067885f8863dd32dbbb4f779cfcc7e52c17abede9311d84faf6d3ed8760e7c54c6380281732ae1f78e5e56a28baf3c271b33f450a11c9e30485 languageName: node linkType: hard @@ -10033,13 +9740,13 @@ __metadata: linkType: hard "postcss@npm:^8.3.11, postcss@npm:^8.4.21": - version: 8.4.23 - resolution: "postcss@npm:8.4.23" + version: 8.4.24 + resolution: "postcss@npm:8.4.24" dependencies: nanoid: ^3.3.6 picocolors: ^1.0.0 source-map-js: ^1.0.2 - checksum: 8bb9d1b2ea6e694f8987d4f18c94617971b2b8d141602725fedcc2222fdc413b776a6e1b969a25d627d7b2681ca5aabb56f59e727ef94072e1b6ac8412105a2f + checksum: 814e2126dacfea313588eda09cc99a9b4c26ec55c059188aa7a916d20d26d483483106dc5ff9e560731b59f45c5bb91b945dfadc670aed875cc90ddbbf4e787d languageName: node linkType: hard @@ -10439,14 +10146,14 @@ __metadata: linkType: hard "read-package-json@npm:^6.0.0": - version: 6.0.3 - resolution: "read-package-json@npm:6.0.3" + version: 6.0.4 + resolution: "read-package-json@npm:6.0.4" dependencies: glob: ^10.2.2 json-parse-even-better-errors: ^3.0.0 normalize-package-data: ^5.0.0 npm-normalize-package-bin: ^3.0.0 - checksum: 8865b70ac49fc18b32530ae97fe45babf04a31974ffa8071841a8d1d5b3ef93e4213b1a2b5b21b9e240022bffea339bc65ea9a83eeffe5609da1de2567944345 + checksum: ce40c4671299753f1349aebe44693cd250d6936c4bacfb31cd884c87f24a0174ba5f651ee2866cf5e57365451cba38bc1db9c2a371e4ba7502fb46dcad50f1d7 languageName: node linkType: hard @@ -10814,25 +10521,25 @@ __metadata: linkType: hard "schema-utils@npm:^3.0.0, schema-utils@npm:^3.1.1, schema-utils@npm:^3.1.2": - version: 3.1.2 - resolution: "schema-utils@npm:3.1.2" + version: 3.2.0 + resolution: "schema-utils@npm:3.2.0" dependencies: "@types/json-schema": ^7.0.8 ajv: ^6.12.5 ajv-keywords: ^3.5.2 - checksum: 39683edfe3beff018cdb1ae4fa296fc55cea13a080aa2b4d9351895cd64b22ba4d87e2e548c2a2ac1bc76e60980670adb0f413a58104479f1a0c12e5663cb8ca + checksum: e8c590c525a58e135658dbe614c60e4821f98eb4c257c962ad61f72ad1e48b23148c7edd9295dbd5f9fc525ff8c6f448af0a932871fe9c9e1f523d1dbef917c8 languageName: node linkType: hard "schema-utils@npm:^4.0.0": - version: 4.0.1 - resolution: "schema-utils@npm:4.0.1" + version: 4.1.0 + resolution: "schema-utils@npm:4.1.0" dependencies: "@types/json-schema": ^7.0.9 ajv: ^8.9.0 ajv-formats: ^2.1.1 ajv-keywords: ^5.1.0 - checksum: 745e7293c6b6c84940de16753c207311da821aa9911b9e2d158cfd9ffc5bf1f880147abbbe775b96cb8cd3c7f48890950fe0164f54eed9a8aabb948ebf8a3fdd + checksum: f88af7cc0739ee29501ac40e135a4ff7e667a6e7a4c3814086d24b17377bfe0c8ea260c36a89ccbeefbb30f4508d67f336fd0df1a16966e1ba00c8d58a6323b1 languageName: node linkType: hard @@ -10984,15 +10691,16 @@ __metadata: linkType: hard "sigstore@npm:^1.0.0, sigstore@npm:^1.3.0, sigstore@npm:^1.4.0": - version: 1.5.2 - resolution: "sigstore@npm:1.5.2" + version: 1.6.0 + resolution: "sigstore@npm:1.6.0" dependencies: "@sigstore/protobuf-specs": ^0.1.0 + "@sigstore/tuf": ^1.0.0 make-fetch-happen: ^11.0.1 tuf-js: ^1.1.3 bin: sigstore: bin/sigstore.js - checksum: f54b4f427f319e9f5bea30287ff9ca567939e7cfbab6031875e9cf7991db12696e722e8f1dd5e32a219db631ab277316d6b008db4d7c33f8ceb7a053f2cee3ec + checksum: 55d87e24fc39ace705ba196bdb94f97bfa06d73887184cc6fc6c3c9b1900f72fed31d550445786b5fd73381e3161dab48065a1d1bdf45298f48d06b0a8ea6899 languageName: node linkType: hard @@ -11302,11 +11010,11 @@ __metadata: linkType: hard "strip-ansi@npm:^7.0.1": - version: 7.0.1 - resolution: "strip-ansi@npm:7.0.1" + version: 7.1.0 + resolution: "strip-ansi@npm:7.1.0" dependencies: ansi-regex: ^6.0.1 - checksum: 257f78fa433520e7f9897722731d78599cb3fce29ff26a20a5e12ba4957463b50a01136f37c43707f4951817a75e90820174853d6ccc240997adc5df8f966039 + checksum: 859c73fcf27869c22a4e4d8c6acfe690064659e84bef9458aa6d13719d09ca88dcfd40cbf31fd0be63518ea1a643fe070b4827d353e09533a5b0b9fd4553d64d languageName: node linkType: hard @@ -11377,8 +11085,8 @@ __metadata: linkType: hard "styled-components@npm:^5.3.6": - version: 5.3.10 - resolution: "styled-components@npm:5.3.10" + version: 5.3.11 + resolution: "styled-components@npm:5.3.11" dependencies: "@babel/helper-module-imports": ^7.0.0 "@babel/traverse": ^7.4.5 @@ -11394,7 +11102,7 @@ __metadata: react: ">= 16.8.0" react-dom: ">= 16.8.0" react-is: ">= 16.8.0" - checksum: 46dfea6c435516b22aae25798cf01f9b08423cfb517cfea9db760a18c941bddf79abaad9bedb9b3cca6faad24bd7eb4ef4dd21ae84b356ae29d279b2d571f7b7 + checksum: 10edd4dae3b0231ec02d86bdd09c88e894eedfa7e9d4f8e562b09fb69c67a27d586cbcf35c785002d59b3bf11e6c0940b0efce40d13ae9ed148b26b1dc8f3284 languageName: node linkType: hard @@ -11530,16 +11238,16 @@ __metadata: linkType: hard "terser@npm:^5.16.8": - version: 5.17.6 - resolution: "terser@npm:5.17.6" + version: 5.17.7 + resolution: "terser@npm:5.17.7" dependencies: - "@jridgewell/source-map": ^0.3.2 - acorn: ^8.5.0 + "@jridgewell/source-map": ^0.3.3 + acorn: ^8.8.2 commander: ^2.20.0 source-map-support: ~0.5.20 bin: terser: bin/terser - checksum: 9c0ab0261a99a61c5f53d05d4ecc7f68c552bae6af481464fdd596bc9d7e89ce8e21b1833cb3ce06ad5f658e2b226081d543e4fe6e324b2cdf03ee8b7eeec01a + checksum: b7b17b281febadf3bea9b9412d699fa24edf9b3e20fc7ad4e1a9cec276bdb65ddaa291c9663d5ab66b58834e433377477f73328574ccab2da1637a15b095811d languageName: node linkType: hard @@ -11692,8 +11400,8 @@ __metadata: linkType: hard "ts-loader@npm:^9.2.6": - version: 9.4.2 - resolution: "ts-loader@npm:9.4.2" + version: 9.4.3 + resolution: "ts-loader@npm:9.4.3" dependencies: chalk: ^4.1.0 enhanced-resolve: ^5.0.0 @@ -11702,7 +11410,7 @@ __metadata: peerDependencies: typescript: "*" webpack: ^5.0.0 - checksum: 6f306ee4c615c2a159fb177561e3fb86ca2cbd6c641e710d408a64b4978e1ff3f2c9733df07bff27d3f82efbfa7c287523d4306049510c7485ac2669a9c37eb0 + checksum: 139ed53bc60717d0ca231cdffbdef7566b9feda11c72fecc697983113f1266ccca2e1cdf191f841a43afa6b87d6afe57a0caf4feecf02f30845aa7ac6f2411a4 languageName: node linkType: hard @@ -11740,10 +11448,10 @@ __metadata: languageName: node linkType: hard -"tslib@npm:^2.1.0, tslib@npm:^2.3.0, tslib@npm:^2.4.0": - version: 2.5.2 - resolution: "tslib@npm:2.5.2" - checksum: 4d3c1e238b94127ed0e88aa0380db3c2ddae581dc0f4bae5a982345e9f50ee5eda90835b8bfba99b02df10a5734470be197158c36f9129ac49fdc14a6a9da222 +"tslib@npm:^2.1.0, tslib@npm:^2.3.0, tslib@npm:^2.4.0, tslib@npm:~2.5.0": + version: 2.5.3 + resolution: "tslib@npm:2.5.3" + checksum: 88902b309afaf83259131c1e13da1dceb0ad1682a213143a1346a649143924d78cf3760c448b84d796938fd76127183894f8d85cbb3bf9c4fddbfcc140c0003c languageName: node linkType: hard @@ -11884,12 +11592,12 @@ __metadata: linkType: hard "typescript@npm:^5": - version: 5.0.4 - resolution: "typescript@npm:5.0.4" + version: 5.1.3 + resolution: "typescript@npm:5.1.3" bin: tsc: bin/tsc tsserver: bin/tsserver - checksum: 82b94da3f4604a8946da585f7d6c3025fff8410779e5bde2855ab130d05e4fd08938b9e593b6ebed165bda6ad9292b230984f10952cf82f0a0ca07bbeaa08172 + checksum: d9d51862d98efa46534f2800a1071a613751b1585dc78884807d0c179bcd93d6e9d4012a508e276742f5f33c480adefc52ffcafaf9e0e00ab641a14cde9a31c7 languageName: node linkType: hard @@ -11904,12 +11612,12 @@ __metadata: linkType: hard "typescript@patch:typescript@^5#~builtin": - version: 5.0.4 - resolution: "typescript@patch:typescript@npm%3A5.0.4#~builtin::version=5.0.4&hash=85af82" + version: 5.1.3 + resolution: "typescript@patch:typescript@npm%3A5.1.3#~builtin::version=5.1.3&hash=85af82" bin: tsc: bin/tsc tsserver: bin/tsserver - checksum: bb309d320c59a26565fb3793dba550576ab861018ff3fd1b7fccabbe46ae4a35546bc45f342c0a0b6f265c801ccdf64ffd68f548f117ceb7f0eac4b805cd52a9 + checksum: 32a25b2e128a4616f999d4ee502aabb1525d5647bc8955e6edf05d7fbc53af8aa98252e2f6ba80bcedfc0260c982b885f3c09cfac8bb65d2924f3133ad1e1e62 languageName: node linkType: hard @@ -12017,7 +11725,7 @@ __metadata: languageName: node linkType: hard -"update-browserslist-db@npm:^1.0.10": +"update-browserslist-db@npm:^1.0.11": version: 1.0.11 resolution: "update-browserslist-db@npm:1.0.11" dependencies: @@ -12200,9 +11908,9 @@ __metadata: linkType: hard "w3c-keyname@npm:^2.2.4": - version: 2.2.7 - resolution: "w3c-keyname@npm:2.2.7" - checksum: 91e057b1ec28e0bafcaf28def12023f0e083fd473c40d0a9c2aa01a975d227200d75ff6d8eb6961bb4608b967b1df1dd86786b52ee9489cb9a2ebeed881a63ae + version: 2.2.8 + resolution: "w3c-keyname@npm:2.2.8" + checksum: 95bafa4c04fa2f685a86ca1000069c1ec43ace1f8776c10f226a73296caeddd83f893db885c2c220ebeb6c52d424e3b54d7c0c1e963bbf204038ff1a944fbb07 languageName: node linkType: hard @@ -12256,13 +11964,13 @@ __metadata: linkType: hard "webpack-cli@npm:^5.0.1": - version: 5.1.1 - resolution: "webpack-cli@npm:5.1.1" + version: 5.1.4 + resolution: "webpack-cli@npm:5.1.4" dependencies: "@discoveryjs/json-ext": ^0.5.0 - "@webpack-cli/configtest": ^2.1.0 - "@webpack-cli/info": ^2.0.1 - "@webpack-cli/serve": ^2.0.4 + "@webpack-cli/configtest": ^2.1.1 + "@webpack-cli/info": ^2.0.2 + "@webpack-cli/serve": ^2.0.5 colorette: ^2.0.14 commander: ^10.0.1 cross-spawn: ^7.0.3 @@ -12283,7 +11991,7 @@ __metadata: optional: true bin: webpack-cli: bin/cli.js - checksum: 7738e6a84a0098886e1e0c0fd0dab44b7dedfbb0580afbb5ef734c5109dcaee80140bebb5d9f4b40f425029563bb09bcbda8b08d904fa14e60ff632e6dcc8a17 + checksum: 3a4ad0d0342a6815c850ee4633cc2a8a5dae04f918e7847f180bf24ab400803cf8a8943707ffbed03eb20fe6ce647f996f60a2aade87b0b4a9954da3da172ce0 languageName: node linkType: hard @@ -12314,46 +12022,9 @@ __metadata: languageName: node linkType: hard -"webpack@npm:^5.76.1, webpack@npm:^5.76.3": - version: 5.83.1 - resolution: "webpack@npm:5.83.1" - dependencies: - "@types/eslint-scope": ^3.7.3 - "@types/estree": ^1.0.0 - "@webassemblyjs/ast": ^1.11.5 - "@webassemblyjs/wasm-edit": ^1.11.5 - "@webassemblyjs/wasm-parser": ^1.11.5 - acorn: ^8.7.1 - acorn-import-assertions: ^1.7.6 - browserslist: ^4.14.5 - chrome-trace-event: ^1.0.2 - enhanced-resolve: ^5.14.0 - es-module-lexer: ^1.2.1 - eslint-scope: 5.1.1 - events: ^3.2.0 - glob-to-regexp: ^0.4.1 - graceful-fs: ^4.2.9 - json-parse-even-better-errors: ^2.3.1 - loader-runner: ^4.2.0 - mime-types: ^2.1.27 - neo-async: ^2.6.2 - schema-utils: ^3.1.2 - tapable: ^2.1.1 - terser-webpack-plugin: ^5.3.7 - watchpack: ^2.4.0 - webpack-sources: ^3.2.3 - peerDependenciesMeta: - webpack-cli: - optional: true - bin: - webpack: bin/webpack.js - checksum: 219d5ef50380bc0fd3702ed17feddf13819d8173b78f7a5b857dc74ac177e63d1f79c050792754411cc088bbc02e0971b989efddadbb8e393cf27d64c0ad9ff8 - languageName: node - linkType: hard - -"webpack@npm:^5.77.0": - version: 5.85.1 - resolution: "webpack@npm:5.85.1" +"webpack@npm:^5.76.1, webpack@npm:^5.76.3, webpack@npm:^5.77.0": + version: 5.86.0 + resolution: "webpack@npm:5.86.0" dependencies: "@types/eslint-scope": ^3.7.3 "@types/estree": ^1.0.0 @@ -12384,7 +12055,7 @@ __metadata: optional: true bin: webpack: bin/webpack.js - checksum: 6fa659ef5e53211e6eeaed1987ac415ddd219584414b2d5ca0d528f0c7dd49be5363a9840e1def33efe1b3305ef3ad3c91f803bd87e41d2771b125340caa4df7 + checksum: 682b1aa8328bb9d52ae66a1d0a1078af88f9e3b3b3a9c9e1ce203e669581a8e61d522420ef253130eacd510d24d7275b840c1311d50bd048d6fd7c1af186ce55 languageName: node linkType: hard @@ -12763,8 +12434,8 @@ __metadata: linkType: hard "yjs-widgets@npm:^0.3.3": - version: 0.3.3 - resolution: "yjs-widgets@npm:0.3.3" + version: 0.3.4 + resolution: "yjs-widgets@npm:0.3.4" dependencies: "@jupyter-widgets/base": ^6.0.2 "@jupyter/ydoc": ^1.0.2 @@ -12781,16 +12452,16 @@ __metadata: uuid: ^9.0.0 webpack: ^5.77.0 webpack-cli: ^5.0.1 - checksum: 44aad745b35d75e4fd903c841f0e6bfb31578961b3ffea6b8016807e8785c584e7f6ec12672cda25640a3975b0b7ba79639fbdfb9758b1bc2cc34749a6f74f03 + checksum: 2db87e8a81089bd93060284218c0f9cd60764c4e84e64324445a08879820f6fcfc6e6b721ef27e01ac39486ba6becfd445b3eefc48fed27f3e388e59ad5546ac languageName: node linkType: hard "yjs@npm:^13.5.40": - version: 13.6.1 - resolution: "yjs@npm:13.6.1" + version: 13.6.2 + resolution: "yjs@npm:13.6.2" dependencies: lib0: ^0.2.74 - checksum: bf18ed3f53b4baed61363461b2567cf841f27c326ae107736bb46239fb7273d9d0ef71ea83ae792e96e406d074218d6666f2909a680214b940ada39b58545336 + checksum: a69fecdfbdaa8103a732a79e27c128df83a0f1cdd764fa1ef6c51de86a5e1930501a29681124da16332a6afc2824fbdc5c5abe0a6868e1d94ca4fafee8bee503 languageName: node linkType: hard