diff --git a/CHANGELOG.md b/CHANGELOG.md index 739cafc2..97aa2839 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -40,6 +40,26 @@ pip install jupytercad-freecad +## 2.0.2 + +([Full Changelog](https://github.com/jupytercad/JupyterCAD/compare/@jupytercad/base@2.0.1...6cc089370159836d407abf9a797f2f119b076768)) + +### Bugs fixed + +- Pin reacttrs [#380](https://github.com/jupytercad/JupyterCAD/pull/380) ([@martinRenou](https://github.com/martinRenou)) + +### Documentation improvements + +- Update Contributing Guide for Development Installation [#379](https://github.com/jupytercad/JupyterCAD/pull/379) ([@arjxn-py](https://github.com/arjxn-py)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupytercad/JupyterCAD/graphs/contributors?from=2024-07-04&to=2024-07-19&type=c)) + +[@arjxn-py](https://github.com/search?q=repo%3Ajupytercad%2FJupyterCAD+involves%3Aarjxn-py+updated%3A2024-07-04..2024-07-19&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupytercad%2FJupyterCAD+involves%3Agithub-actions+updated%3A2024-07-04..2024-07-19&type=Issues) | [@martinRenou](https://github.com/search?q=repo%3Ajupytercad%2FJupyterCAD+involves%3AmartinRenou+updated%3A2024-07-04..2024-07-19&type=Issues) + + + ## 2.0.1 ([Full Changelog](https://github.com/jupytercad/JupyterCAD/compare/@jupytercad/base@2.0.0...a115397ef4a459379e19fc7af4c3e5ac2bd2b142)) @@ -54,8 +74,6 @@ pip install jupytercad-freecad [@github-actions](https://github.com/search?q=repo%3Ajupytercad%2FJupyterCAD+involves%3Agithub-actions+updated%3A2024-07-01..2024-07-04&type=Issues) | [@trungleduc](https://github.com/search?q=repo%3Ajupytercad%2FJupyterCAD+involves%3Atrungleduc+updated%3A2024-07-01..2024-07-04&type=Issues) - - ## 2.0.0 Highlights ([Full Changelog](https://github.com/jupytercad/jupytercad/compare/v1.0.1...v2.0.0)) diff --git a/package.json b/package.json index 6617b7fa..63cf6956 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@jupytercad/jupytercad-root", - "version": "2.0.1", + "version": "2.0.2", "private": true, "homepage": "https://github.com/jupytercad/JupyterCAD", "repository": { diff --git a/packages/base/package.json b/packages/base/package.json index f7fd96e0..b4e4d50a 100644 --- a/packages/base/package.json +++ b/packages/base/package.json @@ -1,6 +1,6 @@ { "name": "@jupytercad/base", - "version": "2.0.1", + "version": "2.0.2", "description": "A JupyterLab extension for 3D modelling.", "keywords": [ "jupyter", @@ -38,8 +38,8 @@ "@deathbeds/jupyterlab-rjsf": "^1.1.0", "@jupyter/docprovider": "^2.0.0", "@jupyter/ydoc": "^1.0.0", - "@jupytercad/occ-worker": "^2.0.1", - "@jupytercad/schema": "^2.0.1", + "@jupytercad/occ-worker": "^2.0.2", + "@jupytercad/schema": "^2.0.2", "@jupyterlab/application": "^4.0.0", "@jupyterlab/apputils": "^4.0.0", "@jupyterlab/coreutils": "^6.0.0", diff --git a/packages/occ-worker/package.json b/packages/occ-worker/package.json index a110093f..ffc2fa32 100644 --- a/packages/occ-worker/package.json +++ b/packages/occ-worker/package.json @@ -1,6 +1,6 @@ { "name": "@jupytercad/occ-worker", - "version": "2.0.1", + "version": "2.0.2", "description": "Jupytercad opencascade worker package.", "keywords": [ "jupytercad" @@ -36,8 +36,8 @@ "watch": "tsc-watch --onSuccess \"webpack --config worker.webpack.config.js --mode=development\"" }, "dependencies": { - "@jupytercad/opencascade": "^2.0.1", - "@jupytercad/schema": "^2.0.1", + "@jupytercad/opencascade": "^2.0.2", + "@jupytercad/schema": "^2.0.2", "@lumino/coreutils": "^2.0.0", "uuid": "^8.3.2" }, diff --git a/packages/opencascade/package.json b/packages/opencascade/package.json index b247d95a..1bb48318 100644 --- a/packages/opencascade/package.json +++ b/packages/opencascade/package.json @@ -1,6 +1,6 @@ { "name": "@jupytercad/opencascade", - "version": "2.0.1", + "version": "2.0.2", "description": "The custom OpenCascade build for JupyterCAD.", "keywords": [ "jupyter", diff --git a/packages/schema/package.json b/packages/schema/package.json index 2fecac92..01f28a6b 100644 --- a/packages/schema/package.json +++ b/packages/schema/package.json @@ -1,6 +1,6 @@ { "name": "@jupytercad/schema", - "version": "2.0.1", + "version": "2.0.2", "description": "A Jupytercad schema package.", "keywords": [ "jupytercad" diff --git a/python/jupytercad/jupytercad/__init__.py b/python/jupytercad/jupytercad/__init__.py index 2a870dfc..58195883 100644 --- a/python/jupytercad/jupytercad/__init__.py +++ b/python/jupytercad/jupytercad/__init__.py @@ -1,3 +1,3 @@ -__version__ = "2.0.1" +__version__ = "2.0.2" from jupytercad_lab import CadDocument # noqa diff --git a/python/jupytercad/pyproject.toml b/python/jupytercad/pyproject.toml index 383dfc97..3c51a6f2 100644 --- a/python/jupytercad/pyproject.toml +++ b/python/jupytercad/pyproject.toml @@ -19,9 +19,9 @@ classifiers = [ "Programming Language :: Python :: 3.12", ] dependencies = [ - "jupytercad_core==2.0.1", - "jupytercad_lab==2.0.1", - "jupytercad_app==2.0.1", + "jupytercad_core==2.0.2", + "jupytercad_lab==2.0.2", + "jupytercad_app==2.0.2", ] dynamic = ["version"] license = {file = "LICENSE"} diff --git a/python/jupytercad_app/package.json b/python/jupytercad_app/package.json index dc27c2b0..f177a8af 100644 --- a/python/jupytercad_app/package.json +++ b/python/jupytercad_app/package.json @@ -1,6 +1,6 @@ { "name": "@jupytercad/jupytercad-app", - "version": "2.0.1", + "version": "2.0.2", "description": "A JupyterLab standalone app for 3D modelling.", "keywords": [ "jupyter", @@ -54,8 +54,8 @@ "@jupyter/collaboration": "^2.0.0", "@jupyter/docprovider": "^2.0.0", "@jupyter/ydoc": "^0.3.4 || ^1.0.2", - "@jupytercad/base": "^2.0.1", - "@jupytercad/schema": "^2.0.1", + "@jupytercad/base": "^2.0.2", + "@jupytercad/schema": "^2.0.2", "@jupyterlab/application": "^4.0.0", "@jupyterlab/application-extension": "^4.0.0", "@jupyterlab/apputils": "^4.0.0", diff --git a/python/jupytercad_core/package.json b/python/jupytercad_core/package.json index 7c58af29..fd2b93a7 100644 --- a/python/jupytercad_core/package.json +++ b/python/jupytercad_core/package.json @@ -1,6 +1,6 @@ { "name": "@jupytercad/jupytercad-core", - "version": "2.0.1", + "version": "2.0.2", "description": "JupyterCad core extension", "keywords": [ "jupyter", @@ -54,9 +54,9 @@ }, "dependencies": { "@jupyter/docprovider": "^2.0.0", - "@jupytercad/base": "^2.0.1", - "@jupytercad/occ-worker": "^2.0.1", - "@jupytercad/schema": "^2.0.1", + "@jupytercad/base": "^2.0.2", + "@jupytercad/occ-worker": "^2.0.2", + "@jupytercad/schema": "^2.0.2", "@jupyterlab/application": "^4.0.0", "@jupyterlab/apputils": "^4.0.0", "@jupyterlab/docregistry": "^4.0.0", diff --git a/python/jupytercad_lab/package.json b/python/jupytercad_lab/package.json index 64aa6194..f77635ac 100644 --- a/python/jupytercad_lab/package.json +++ b/python/jupytercad_lab/package.json @@ -1,6 +1,6 @@ { "name": "@jupytercad/jupytercad-lab", - "version": "2.0.1", + "version": "2.0.2", "description": "JupyterCad Lab extension.", "keywords": [ "jupyter", @@ -52,9 +52,9 @@ }, "dependencies": { "@jupyter/docprovider": "^2.0.0", - "@jupytercad/base": "^2.0.1", - "@jupytercad/jupytercad-core": "^2.0.1", - "@jupytercad/schema": "^2.0.1", + "@jupytercad/base": "^2.0.2", + "@jupytercad/jupytercad-core": "^2.0.2", + "@jupytercad/schema": "^2.0.2", "@jupyterlab/application": "^4.0.0", "@jupyterlab/apputils": "^4.0.0", "@jupyterlab/coreutils": "^6.0.0", diff --git a/yarn.lock b/yarn.lock index 0b714047..18e3caff 100644 --- a/yarn.lock +++ b/yarn.lock @@ -39,15 +39,15 @@ __metadata: languageName: node linkType: hard -"@babel/generator@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/generator@npm:7.24.7" +"@babel/generator@npm:^7.24.8": + version: 7.24.10 + resolution: "@babel/generator@npm:7.24.10" dependencies: - "@babel/types": ^7.24.7 + "@babel/types": ^7.24.9 "@jridgewell/gen-mapping": ^0.3.5 "@jridgewell/trace-mapping": ^0.3.25 jsesc: ^2.5.1 - checksum: 0ff31a73b15429f1287e4d57b439bba4a266f8c673bb445fe313b82f6d110f586776997eb723a777cd7adad9d340edd162aea4973a90112c5d0cfcaf6686844b + checksum: eb13806e9eb76932ea5205502a85ea650a991c7a6f757fbe859176f6d9b34b3da5a2c1f52a2c24fdbe0045a90438fe6889077e338cdd6c727619dee925af1ba6 languageName: node linkType: hard @@ -99,9 +99,9 @@ __metadata: linkType: hard "@babel/helper-plugin-utils@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/helper-plugin-utils@npm:7.24.7" - checksum: 81f2a15751d892e4a8fce25390f973363a5b27596167861d2d6eab0f61856eb2ba389b031a9f19f669c0bd4dd601185828d3cebafd25431be7a1696f2ce3ef68 + version: 7.24.8 + resolution: "@babel/helper-plugin-utils@npm:7.24.8" + checksum: 73b1a83ba8bcee21dc94de2eb7323207391715e4369fd55844bb15cf13e3df6f3d13a40786d990e6370bf0f571d94fc31f70dec96c1d1002058258c35ca3767a languageName: node linkType: hard @@ -114,10 +114,10 @@ __metadata: languageName: node linkType: hard -"@babel/helper-string-parser@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/helper-string-parser@npm:7.24.7" - checksum: 09568193044a578743dd44bf7397940c27ea693f9812d24acb700890636b376847a611cdd0393a928544e79d7ad5b8b916bd8e6e772bc8a10c48a647a96e7b1a +"@babel/helper-string-parser@npm:^7.24.8": + version: 7.24.8 + resolution: "@babel/helper-string-parser@npm:7.24.8" + checksum: 39b03c5119216883878655b149148dc4d2e284791e969b19467a9411fccaa33f7a713add98f4db5ed519535f70ad273cdadfd2eb54d47ebbdeac5083351328ce languageName: node linkType: hard @@ -140,12 +140,12 @@ __metadata: languageName: node linkType: hard -"@babel/parser@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/parser@npm:7.24.7" +"@babel/parser@npm:^7.24.7, @babel/parser@npm:^7.24.8": + version: 7.24.8 + resolution: "@babel/parser@npm:7.24.8" bin: parser: ./bin/babel-parser.js - checksum: fc9d2c4c8712f89672edc55c0dc5cf640dcec715b56480f111f85c2bc1d507e251596e4110d65796690a96ac37a4b60432af90b3e97bb47e69d4ef83872dbbd6 + checksum: 76f866333bfbd53800ac027419ae523bb0137fc63daa968232eb780e4390136bb6e497cb4a2cf6051a2c318aa335c2e6d2adc17079d60691ae7bde89b28c5688 languageName: node linkType: hard @@ -161,11 +161,11 @@ __metadata: linkType: hard "@babel/runtime@npm:^7.1.2": - version: 7.24.7 - resolution: "@babel/runtime@npm:7.24.7" + version: 7.24.8 + resolution: "@babel/runtime@npm:7.24.8" dependencies: regenerator-runtime: ^0.14.0 - checksum: d17f29eed6f848ac15cdf4202a910b741facfb0419a9d79e5c7fa37df6362fc3227f1cc2e248cc6db5e53ddffb4caa6686c488e6e80ce3d29c36a4e74c8734ea + checksum: 6b1e4230580f67a807ad054720812bbefbb024cc2adc1159d050acbb764c4c81c7ac5f7a042c48f578987c5edc2453c71039268df059058e9501fa6023d764b0 languageName: node linkType: hard @@ -181,31 +181,31 @@ __metadata: linkType: hard "@babel/traverse@npm:^7.24.7, @babel/traverse@npm:^7.4.5": - version: 7.24.7 - resolution: "@babel/traverse@npm:7.24.7" + version: 7.24.8 + resolution: "@babel/traverse@npm:7.24.8" dependencies: "@babel/code-frame": ^7.24.7 - "@babel/generator": ^7.24.7 + "@babel/generator": ^7.24.8 "@babel/helper-environment-visitor": ^7.24.7 "@babel/helper-function-name": ^7.24.7 "@babel/helper-hoist-variables": ^7.24.7 "@babel/helper-split-export-declaration": ^7.24.7 - "@babel/parser": ^7.24.7 - "@babel/types": ^7.24.7 + "@babel/parser": ^7.24.8 + "@babel/types": ^7.24.8 debug: ^4.3.1 globals: ^11.1.0 - checksum: 7cd366afe9e7ee77e493779fdf24f67bf5595247289364f4689e29688572505eaeb886d7a8f20ebb9c29fc2de7d0895e4ff9e203e78e39ac67239724d45aa83b + checksum: ee7955476ce031613249f2b0ce9e74a3b7787c9d52e84534fcf39ad61aeb0b811a4cd83edc157608be4886f04c6ecf210861e211ba2a3db4fda729cc2048b5ed languageName: node linkType: hard -"@babel/types@npm:^7.24.7, @babel/types@npm:^7.8.3": - version: 7.24.7 - resolution: "@babel/types@npm:7.24.7" +"@babel/types@npm:^7.24.7, @babel/types@npm:^7.24.8, @babel/types@npm:^7.24.9, @babel/types@npm:^7.8.3": + version: 7.24.9 + resolution: "@babel/types@npm:7.24.9" dependencies: - "@babel/helper-string-parser": ^7.24.7 + "@babel/helper-string-parser": ^7.24.8 "@babel/helper-validator-identifier": ^7.24.7 to-fast-properties: ^2.0.0 - checksum: 3e4437fced97e02982972ce5bebd318c47d42c9be2152c0fd28c6f786cc74086cc0a8fb83b602b846e41df37f22c36254338eada1a47ef9d8a1ec92332ca3ea8 + checksum: 15cb05c45be5d4c49a749575d3742bd005d0e2e850c13fb462754983a5bc1063fbc8f6566246fc064e3e8b21a5a75a37a948f1b3f27189cc90b236fee93f5e51 languageName: node linkType: hard @@ -516,39 +516,39 @@ __metadata: linkType: hard "@codemirror/view@npm:^6.0.0, @codemirror/view@npm:^6.17.0, @codemirror/view@npm:^6.23.0, @codemirror/view@npm:^6.26.0, @codemirror/view@npm:^6.27.0, @codemirror/view@npm:^6.7.0, @codemirror/view@npm:^6.9.3": - version: 6.28.4 - resolution: "@codemirror/view@npm:6.28.4" + version: 6.28.5 + resolution: "@codemirror/view@npm:6.28.5" dependencies: "@codemirror/state": ^6.4.0 style-mod: ^4.1.0 w3c-keyname: ^2.2.4 - checksum: 8aa6db7f37a54685d8188bf63f363b3b0f3780216f11febd3ef9e7438e69e8e6106b6400988f4763c33160dd681bec6ce81d24ab3ec52fc048f3e42f86eb4286 + checksum: fdbc317241a92dd140bd19c2218550aa8327c24ee8c3f10146b6c4375f4b4d38c673166925990f3ac2d9b0f2f2661e93b0a7428e21d2c73f710374e0bc4b976e languageName: node linkType: hard "@csstools/css-parser-algorithms@npm:^2.3.1": - version: 2.7.0 - resolution: "@csstools/css-parser-algorithms@npm:2.7.0" + version: 2.7.1 + resolution: "@csstools/css-parser-algorithms@npm:2.7.1" peerDependencies: - "@csstools/css-tokenizer": ^2.3.2 - checksum: 25f27d0b647ee2a215f27b7b41e0e3337f6df93bf8b53e6e86f25b6089dd3d8597133919c1c107b5a8c737c83176305ab7818448348036cbacae30cf70c4433c + "@csstools/css-tokenizer": ^2.4.1 + checksum: 304e6f92e583042c310e368a82b694af563a395e5c55911caefe52765c5acb000b9daa17356ea8a4dd37d4d50132b76de48ced75159b169b53e134ff78b362ba languageName: node linkType: hard "@csstools/css-tokenizer@npm:^2.2.0": - version: 2.3.3 - resolution: "@csstools/css-tokenizer@npm:2.3.3" - checksum: a1ee03f5fa87f6b40ffda8848bca4a51eb7e1be1696acaaf330af0b78c8cf877a5cff3be4f74c49e06ce3504cb659546368480b6e0363f46f6574e0ae0cdf677 + version: 2.4.1 + resolution: "@csstools/css-tokenizer@npm:2.4.1" + checksum: 395c51f8724ddc4851d836f484346bb3ea6a67af936dde12cbf9a57ae321372e79dee717cbe4823599eb0e6fd2d5405cf8873450e986c2fca6e6ed82e7b10219 languageName: node linkType: hard "@csstools/media-query-list-parser@npm:^2.1.4": - version: 2.1.12 - resolution: "@csstools/media-query-list-parser@npm:2.1.12" + version: 2.1.13 + resolution: "@csstools/media-query-list-parser@npm:2.1.13" peerDependencies: - "@csstools/css-parser-algorithms": ^2.7.0 - "@csstools/css-tokenizer": ^2.3.2 - checksum: 0c2655cf247fcae3ab5ea9a38264567c5d590d0b3f7d96d33cb92253e95acab25a60d66f70c15e7bf75365fa796bf19d5387991a110dd8b38ed5b1767573e113 + "@csstools/css-parser-algorithms": ^2.7.1 + "@csstools/css-tokenizer": ^2.4.1 + checksum: 7754b4b9fcc749a51a2bcd34a167ad16e7227ff087f6c4e15b3593d3342413446b72dad37f1adb99c62538730c77e3e47842987ce453fbb3849d329a39ba9ad7 languageName: node linkType: hard @@ -581,18 +581,18 @@ __metadata: linkType: hard "@emotion/is-prop-valid@npm:^1.1.0, @emotion/is-prop-valid@npm:^1.2.0": - version: 1.2.2 - resolution: "@emotion/is-prop-valid@npm:1.2.2" + version: 1.3.0 + resolution: "@emotion/is-prop-valid@npm:1.3.0" dependencies: - "@emotion/memoize": ^0.8.1 - checksum: 61f6b128ea62b9f76b47955057d5d86fcbe2a6989d2cd1e583daac592901a950475a37d049b9f7a7c6aa8758a33b408735db759fdedfd1f629df0f85ab60ea25 + "@emotion/memoize": ^0.9.0 + checksum: d3e36e493de3b4446634010c46cb8b99fa8ca271a8e7efba9cecf59a672ce1ebcfea8e8c7a0627dcafae87b4ab0d58c70fcf4589b849ca48e0d1e9f6c899e8be languageName: node linkType: hard -"@emotion/memoize@npm:^0.8.1": - version: 0.8.1 - resolution: "@emotion/memoize@npm:0.8.1" - checksum: a19cc01a29fcc97514948eaab4dc34d8272e934466ed87c07f157887406bc318000c69ae6f813a9001c6a225364df04249842a50e692ef7a9873335fbcc141b0 +"@emotion/memoize@npm:^0.9.0": + version: 0.9.0 + resolution: "@emotion/memoize@npm:0.9.0" + checksum: 038132359397348e378c593a773b1148cd0cf0a2285ffd067a0f63447b945f5278860d9de718f906a74c7c940ba1783ac2ca18f1c06a307b01cc0e3944e783b1 languageName: node linkType: hard @@ -770,9 +770,9 @@ __metadata: linkType: hard "@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.14": - version: 1.4.15 - resolution: "@jridgewell/sourcemap-codec@npm:1.4.15" - checksum: b881c7e503db3fc7f3c1f35a1dd2655a188cc51a3612d76efc8a6eb74728bef5606e6758ee77423e564092b4a518aba569bbb21c9bac5ab7a35b0c6ae7e344c8 + version: 1.5.0 + resolution: "@jridgewell/sourcemap-codec@npm:1.5.0" + checksum: 05df4f2538b3b0f998ea4c1cd34574d0feba216fa5d4ccaef0187d12abf82eafe6021cec8b49f9bb4d90f2ba4582ccc581e72986a5fcf4176ae0cfeb04cf52ec languageName: node linkType: hard @@ -893,8 +893,8 @@ __metadata: linkType: hard "@jupyter/ydoc@npm:^2.0.1": - version: 2.0.1 - resolution: "@jupyter/ydoc@npm:2.0.1" + version: 2.1.1 + resolution: "@jupyter/ydoc@npm:2.1.1" dependencies: "@jupyterlab/nbformat": ^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0 "@lumino/coreutils": ^1.11.0 || ^2.0.0 @@ -902,7 +902,7 @@ __metadata: "@lumino/signaling": ^1.10.0 || ^2.0.0 y-protocols: ^1.0.5 yjs: ^13.5.40 - checksum: f5f29e1ff3327ebc1cf326f53634e03c4c7bf7733d235087fe26975c16eebd404f23c2f3ba88b6e04b1927846be7162b09b8b8719a4b29e51d0299c745018cbb + checksum: f10268d4d990f454279e3908a172755ed5885fa81bb70c31bdf66923598b283d26491741bece137d1c348619861e9b7f8354296773fe5352b1915e69101a9fb0 languageName: node linkType: hard @@ -920,7 +920,7 @@ __metadata: languageName: node linkType: hard -"@jupytercad/base@^2.0.1, @jupytercad/base@workspace:packages/base": +"@jupytercad/base@^2.0.2, @jupytercad/base@workspace:packages/base": version: 0.0.0-use.local resolution: "@jupytercad/base@workspace:packages/base" dependencies: @@ -928,8 +928,8 @@ __metadata: "@deathbeds/jupyterlab-rjsf": ^1.1.0 "@jupyter/docprovider": ^2.0.0 "@jupyter/ydoc": ^1.0.0 - "@jupytercad/occ-worker": ^2.0.1 - "@jupytercad/schema": ^2.0.1 + "@jupytercad/occ-worker": ^2.0.2 + "@jupytercad/schema": ^2.0.2 "@jupyterlab/application": ^4.0.0 "@jupyterlab/apputils": ^4.0.0 "@jupyterlab/coreutils": ^6.0.0 @@ -971,8 +971,8 @@ __metadata: "@jupyter/collaboration": ^2.0.0 "@jupyter/docprovider": ^2.0.0 "@jupyter/ydoc": ^0.3.4 || ^1.0.2 - "@jupytercad/base": ^2.0.1 - "@jupytercad/schema": ^2.0.1 + "@jupytercad/base": ^2.0.2 + "@jupytercad/schema": ^2.0.2 "@jupyterlab/application": ^4.0.0 "@jupyterlab/application-extension": ^4.0.0 "@jupyterlab/apputils": ^4.0.0 @@ -1024,14 +1024,14 @@ __metadata: languageName: unknown linkType: soft -"@jupytercad/jupytercad-core@^2.0.1, @jupytercad/jupytercad-core@workspace:python/jupytercad_core": +"@jupytercad/jupytercad-core@^2.0.2, @jupytercad/jupytercad-core@workspace:python/jupytercad_core": version: 0.0.0-use.local resolution: "@jupytercad/jupytercad-core@workspace:python/jupytercad_core" dependencies: "@jupyter/docprovider": ^2.0.0 - "@jupytercad/base": ^2.0.1 - "@jupytercad/occ-worker": ^2.0.1 - "@jupytercad/schema": ^2.0.1 + "@jupytercad/base": ^2.0.2 + "@jupytercad/occ-worker": ^2.0.2 + "@jupytercad/schema": ^2.0.2 "@jupyterlab/application": ^4.0.0 "@jupyterlab/apputils": ^4.0.0 "@jupyterlab/builder": ^4.0.0 @@ -1064,9 +1064,9 @@ __metadata: resolution: "@jupytercad/jupytercad-lab@workspace:python/jupytercad_lab" dependencies: "@jupyter/docprovider": ^2.0.0 - "@jupytercad/base": ^2.0.1 - "@jupytercad/jupytercad-core": ^2.0.1 - "@jupytercad/schema": ^2.0.1 + "@jupytercad/base": ^2.0.2 + "@jupytercad/jupytercad-core": ^2.0.2 + "@jupytercad/schema": ^2.0.2 "@jupyterlab/application": ^4.0.0 "@jupyterlab/apputils": ^4.0.0 "@jupyterlab/builder": ^4.0.0 @@ -1115,12 +1115,12 @@ __metadata: languageName: unknown linkType: soft -"@jupytercad/occ-worker@^2.0.1, @jupytercad/occ-worker@workspace:packages/occ-worker": +"@jupytercad/occ-worker@^2.0.2, @jupytercad/occ-worker@workspace:packages/occ-worker": version: 0.0.0-use.local resolution: "@jupytercad/occ-worker@workspace:packages/occ-worker" dependencies: - "@jupytercad/opencascade": ^2.0.1 - "@jupytercad/schema": ^2.0.1 + "@jupytercad/opencascade": ^2.0.2 + "@jupytercad/schema": ^2.0.2 "@lumino/coreutils": ^2.0.0 "@types/node": ^18.15.11 copy-webpack-plugin: ^10.0.0 @@ -1136,7 +1136,7 @@ __metadata: languageName: unknown linkType: soft -"@jupytercad/opencascade@^2.0.1, @jupytercad/opencascade@workspace:packages/opencascade": +"@jupytercad/opencascade@^2.0.2, @jupytercad/opencascade@workspace:packages/opencascade": version: 0.0.0-use.local resolution: "@jupytercad/opencascade@workspace:packages/opencascade" dependencies: @@ -1147,7 +1147,7 @@ __metadata: languageName: unknown linkType: soft -"@jupytercad/schema@^2.0.1, @jupytercad/schema@workspace:packages/schema": +"@jupytercad/schema@^2.0.2, @jupytercad/schema@workspace:packages/schema": version: 0.0.0-use.local resolution: "@jupytercad/schema@workspace:packages/schema" dependencies: @@ -1172,42 +1172,42 @@ __metadata: linkType: soft "@jupyterlab/application-extension@npm:^4.0.0": - version: 4.2.3 - resolution: "@jupyterlab/application-extension@npm:4.2.3" - dependencies: - "@jupyterlab/application": ^4.2.3 - "@jupyterlab/apputils": ^4.3.3 - "@jupyterlab/coreutils": ^6.2.3 - "@jupyterlab/property-inspector": ^4.2.3 - "@jupyterlab/settingregistry": ^4.2.3 - "@jupyterlab/statedb": ^4.2.3 - "@jupyterlab/statusbar": ^4.2.3 - "@jupyterlab/translation": ^4.2.3 - "@jupyterlab/ui-components": ^4.2.3 + version: 4.2.4 + resolution: "@jupyterlab/application-extension@npm:4.2.4" + dependencies: + "@jupyterlab/application": ^4.2.4 + "@jupyterlab/apputils": ^4.3.4 + "@jupyterlab/coreutils": ^6.2.4 + "@jupyterlab/property-inspector": ^4.2.4 + "@jupyterlab/settingregistry": ^4.2.4 + "@jupyterlab/statedb": ^4.2.4 + "@jupyterlab/statusbar": ^4.2.4 + "@jupyterlab/translation": ^4.2.4 + "@jupyterlab/ui-components": ^4.2.4 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.3.0 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/widgets": ^2.3.2 react: ^18.2.0 - checksum: 17f9c37f56ab4531241feaa29a3ceba36eff4f7df11591f8f01263fa0bea781b24617c24fa0ff02a91018e8afa1339c270cdcf9e5a705679126fc46ab4ee62f6 + checksum: 01595c5dbce05ec511e80c3a2c815ef061aef12dd673cf1c4a4d38e95bf01d2c5886023bab29caaaf51c4e9df8e187fdfbd46798fa6f8924b417c4664bf63a0d languageName: node linkType: hard -"@jupyterlab/application@npm:^4.0.0, @jupyterlab/application@npm:^4.2.3": - version: 4.2.3 - resolution: "@jupyterlab/application@npm:4.2.3" +"@jupyterlab/application@npm:^4.0.0, @jupyterlab/application@npm:^4.2.4": + version: 4.2.4 + resolution: "@jupyterlab/application@npm:4.2.4" dependencies: "@fortawesome/fontawesome-free": ^5.12.0 - "@jupyterlab/apputils": ^4.3.3 - "@jupyterlab/coreutils": ^6.2.3 - "@jupyterlab/docregistry": ^4.2.3 - "@jupyterlab/rendermime": ^4.2.3 - "@jupyterlab/rendermime-interfaces": ^3.10.3 - "@jupyterlab/services": ^7.2.3 - "@jupyterlab/statedb": ^4.2.3 - "@jupyterlab/translation": ^4.2.3 - "@jupyterlab/ui-components": ^4.2.3 + "@jupyterlab/apputils": ^4.3.4 + "@jupyterlab/coreutils": ^6.2.4 + "@jupyterlab/docregistry": ^4.2.4 + "@jupyterlab/rendermime": ^4.2.4 + "@jupyterlab/rendermime-interfaces": ^3.10.4 + "@jupyterlab/services": ^7.2.4 + "@jupyterlab/statedb": ^4.2.4 + "@jupyterlab/translation": ^4.2.4 + "@jupyterlab/ui-components": ^4.2.4 "@lumino/algorithm": ^2.0.1 "@lumino/application": ^2.3.1 "@lumino/commands": ^2.3.0 @@ -1218,27 +1218,27 @@ __metadata: "@lumino/properties": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.2 - checksum: a9dd2b818467f44ffefeab13ed2ca89a2688ff0b0a1a6becd33fc5cca9b70fb0745297812bab56249615f45b125e8129c68939312bb3371b3f50da0e63eef23c + checksum: f2b8c06ad4ee370ed21476c39bfa176bdfe9ef38ec471ea2533a521365655e946b98a7cfa0f2a7f02aab13ad1733c5b24b30760db63bb76124d15d0c78968269 languageName: node linkType: hard "@jupyterlab/apputils-extension@npm:^4.0.0": - version: 4.2.3 - resolution: "@jupyterlab/apputils-extension@npm:4.2.3" - dependencies: - "@jupyterlab/application": ^4.2.3 - "@jupyterlab/apputils": ^4.3.3 - "@jupyterlab/coreutils": ^6.2.3 - "@jupyterlab/docregistry": ^4.2.3 - "@jupyterlab/mainmenu": ^4.2.3 - "@jupyterlab/rendermime-interfaces": ^3.10.3 - "@jupyterlab/services": ^7.2.3 - "@jupyterlab/settingregistry": ^4.2.3 - "@jupyterlab/statedb": ^4.2.3 - "@jupyterlab/statusbar": ^4.2.3 - "@jupyterlab/translation": ^4.2.3 - "@jupyterlab/ui-components": ^4.2.3 - "@jupyterlab/workspaces": ^4.2.3 + version: 4.2.4 + resolution: "@jupyterlab/apputils-extension@npm:4.2.4" + dependencies: + "@jupyterlab/application": ^4.2.4 + "@jupyterlab/apputils": ^4.3.4 + "@jupyterlab/coreutils": ^6.2.4 + "@jupyterlab/docregistry": ^4.2.4 + "@jupyterlab/mainmenu": ^4.2.4 + "@jupyterlab/rendermime-interfaces": ^3.10.4 + "@jupyterlab/services": ^7.2.4 + "@jupyterlab/settingregistry": ^4.2.4 + "@jupyterlab/statedb": ^4.2.4 + "@jupyterlab/statusbar": ^4.2.4 + "@jupyterlab/translation": ^4.2.4 + "@jupyterlab/ui-components": ^4.2.4 + "@jupyterlab/workspaces": ^4.2.4 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.3.0 "@lumino/coreutils": ^2.1.2 @@ -1249,7 +1249,7 @@ __metadata: react: ^18.2.0 react-dom: ^18.2.0 react-toastify: ^9.0.8 - checksum: 6894be9092048130f7afdffd22ba237c62fa3748baa2464c3c0d45be3c0f0397086521d6e8b8f9a52d87acfef5455a020e9367e41bf10ff614fa65ae43eed303 + checksum: 333b0e33780799da7dcb14ef23806560cb8bba94eb7e26f08fdc1396a893486b1c91f211a471390451d1a867854655beb950ef46725f2a72dfbbc090a03cc431 languageName: node linkType: hard @@ -1282,23 +1282,23 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/attachments@npm:^4.2.3": - version: 4.2.3 - resolution: "@jupyterlab/attachments@npm:4.2.3" +"@jupyterlab/attachments@npm:^4.2.4": + version: 4.2.4 + resolution: "@jupyterlab/attachments@npm:4.2.4" dependencies: - "@jupyterlab/nbformat": ^4.2.3 - "@jupyterlab/observables": ^5.2.3 - "@jupyterlab/rendermime": ^4.2.3 - "@jupyterlab/rendermime-interfaces": ^3.10.3 + "@jupyterlab/nbformat": ^4.2.4 + "@jupyterlab/observables": ^5.2.4 + "@jupyterlab/rendermime": ^4.2.4 + "@jupyterlab/rendermime-interfaces": ^3.10.4 "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 - checksum: 21325cd4cf108f21c997696d9b71efa3a77ce218d28777676dda0519dd92e76e43234c08a433e9473024dcfeb92e3a53ecb6284ef2aff870c0bd21f7d384ec3a + checksum: cf4f394c42323919a356c40b32a2cb6bb027d9378fd93b59aeec494214fe43387bf7d5cf58b7625d4b58c39ce50b23186a15361e201db4f7b6db01e2462edae3 languageName: node linkType: hard "@jupyterlab/builder@npm:^4.0.0": - version: 4.2.3 - resolution: "@jupyterlab/builder@npm:4.2.3" + version: 4.2.4 + resolution: "@jupyterlab/builder@npm:4.2.4" dependencies: "@lumino/algorithm": ^2.0.1 "@lumino/application": ^2.3.1 @@ -1333,32 +1333,32 @@ __metadata: worker-loader: ^3.0.2 bin: build-labextension: lib/build-labextension.js - checksum: 6bc0d3a7404cecf53c4378a051e96e51b777e2017c2890ae9331f51e9433ad643c6627bf61d4a0710c1b2cb0d4839bef79a02656b9cef04bf0ec1e913bf3a890 + checksum: 2488e2013afc5499c409a14c34e9fe92ec30cd99622cdb2f00f42a4cced66afac0a1cdf081cf035f2329b50303f91a265146c1e895e832ddd3651c29e2523844 languageName: node linkType: hard "@jupyterlab/cells@npm:^4.0.13": - version: 4.2.3 - resolution: "@jupyterlab/cells@npm:4.2.3" + version: 4.2.4 + resolution: "@jupyterlab/cells@npm:4.2.4" dependencies: "@codemirror/state": ^6.4.1 "@codemirror/view": ^6.26.0 "@jupyter/ydoc": ^2.0.1 - "@jupyterlab/apputils": ^4.3.3 - "@jupyterlab/attachments": ^4.2.3 - "@jupyterlab/codeeditor": ^4.2.3 - "@jupyterlab/codemirror": ^4.2.3 - "@jupyterlab/coreutils": ^6.2.3 - "@jupyterlab/documentsearch": ^4.2.3 - "@jupyterlab/filebrowser": ^4.2.3 - "@jupyterlab/nbformat": ^4.2.3 - "@jupyterlab/observables": ^5.2.3 - "@jupyterlab/outputarea": ^4.2.3 - "@jupyterlab/rendermime": ^4.2.3 - "@jupyterlab/services": ^7.2.3 - "@jupyterlab/toc": ^6.2.3 - "@jupyterlab/translation": ^4.2.3 - "@jupyterlab/ui-components": ^4.2.3 + "@jupyterlab/apputils": ^4.3.4 + "@jupyterlab/attachments": ^4.2.4 + "@jupyterlab/codeeditor": ^4.2.4 + "@jupyterlab/codemirror": ^4.2.4 + "@jupyterlab/coreutils": ^6.2.4 + "@jupyterlab/documentsearch": ^4.2.4 + "@jupyterlab/filebrowser": ^4.2.4 + "@jupyterlab/nbformat": ^4.2.4 + "@jupyterlab/observables": ^5.2.4 + "@jupyterlab/outputarea": ^4.2.4 + "@jupyterlab/rendermime": ^4.2.4 + "@jupyterlab/services": ^7.2.4 + "@jupyterlab/toc": ^6.2.4 + "@jupyterlab/translation": ^4.2.4 + "@jupyterlab/ui-components": ^4.2.4 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/domutils": ^2.0.1 @@ -1369,7 +1369,7 @@ __metadata: "@lumino/virtualdom": ^2.0.1 "@lumino/widgets": ^2.3.2 react: ^18.2.0 - checksum: faaaf969d908d6d0f5713ca23d83bf7f69a8afb9ea72b37722a047afc832e4f3ea97299921ff92575a77d5b4856c2862a7b97823b97fe707a16f435d77e1ed1d + checksum: 5fb21e53e73b1ee24d09fe5f6300009d858a36dbfafba9d25ad7b27d0ea9cdd4d06ee9b238bd29553e92a166dbc181d489aec294eda2d411e3d59664cd3599f1 languageName: node linkType: hard @@ -1393,19 +1393,19 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/codeeditor@npm:^4.0.13, @jupyterlab/codeeditor@npm:^4.2.3": - version: 4.2.3 - resolution: "@jupyterlab/codeeditor@npm:4.2.3" +"@jupyterlab/codeeditor@npm:^4.0.13, @jupyterlab/codeeditor@npm:^4.2.4": + version: 4.2.4 + resolution: "@jupyterlab/codeeditor@npm:4.2.4" dependencies: "@codemirror/state": ^6.4.1 "@jupyter/ydoc": ^2.0.1 - "@jupyterlab/apputils": ^4.3.3 - "@jupyterlab/coreutils": ^6.2.3 - "@jupyterlab/nbformat": ^4.2.3 - "@jupyterlab/observables": ^5.2.3 - "@jupyterlab/statusbar": ^4.2.3 - "@jupyterlab/translation": ^4.2.3 - "@jupyterlab/ui-components": ^4.2.3 + "@jupyterlab/apputils": ^4.3.4 + "@jupyterlab/coreutils": ^6.2.4 + "@jupyterlab/nbformat": ^4.2.4 + "@jupyterlab/observables": ^5.2.4 + "@jupyterlab/statusbar": ^4.2.4 + "@jupyterlab/translation": ^4.2.4 + "@jupyterlab/ui-components": ^4.2.4 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/dragdrop": ^2.1.4 @@ -1413,13 +1413,13 @@ __metadata: "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.2 react: ^18.2.0 - checksum: 36e402e35043deb4e40879760eb2e68bd4f6802751e64761cd7d46fc11dbbadfd43481d1fbda91a205cb8a269b9ac1fe3130e0597eb10c63231b2b5087341cad + checksum: 851f7ab884030c41317171aa7e699e37440a41a1aff0859e7f7aaf10d8204802817c25ab227d7f24863ba1ffe689ad06ea7674b53073037b7b59df21613cdfe0 languageName: node linkType: hard "@jupyterlab/codemirror-extension@npm:^4.0.0": - version: 4.2.3 - resolution: "@jupyterlab/codemirror-extension@npm:4.2.3" + version: 4.2.4 + resolution: "@jupyterlab/codemirror-extension@npm:4.2.4" dependencies: "@codemirror/commands": ^6.3.3 "@codemirror/lang-markdown": ^6.2.4 @@ -1428,19 +1428,19 @@ __metadata: "@codemirror/search": ^6.5.6 "@codemirror/view": ^6.26.0 "@jupyter/ydoc": ^2.0.1 - "@jupyterlab/application": ^4.2.3 - "@jupyterlab/codeeditor": ^4.2.3 - "@jupyterlab/codemirror": ^4.2.3 - "@jupyterlab/settingregistry": ^4.2.3 - "@jupyterlab/statusbar": ^4.2.3 - "@jupyterlab/translation": ^4.2.3 - "@jupyterlab/ui-components": ^4.2.3 + "@jupyterlab/application": ^4.2.4 + "@jupyterlab/codeeditor": ^4.2.4 + "@jupyterlab/codemirror": ^4.2.4 + "@jupyterlab/settingregistry": ^4.2.4 + "@jupyterlab/statusbar": ^4.2.4 + "@jupyterlab/translation": ^4.2.4 + "@jupyterlab/ui-components": ^4.2.4 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.2 "@rjsf/utils": ^5.13.4 "@rjsf/validator-ajv8": ^5.13.4 react: ^18.2.0 - checksum: 42792cd33dac8a41949d91cf05ab627285bd0c556959c5c9280e291dc7368ec68a7de03ed1264237c2070b340dc4a79aa83bc96b6f36e26da3e78fd7312c0bb2 + checksum: 71adb738280f3ad74be3efa53370e85e38cae8c6609ac6293a0dd4245f4fdc593b16ba88273b35582f015fdc0005f408ca60b9e7230f47d1e00139f488769c48 languageName: node linkType: hard @@ -1470,9 +1470,9 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/codemirror@npm:^4.0.0, @jupyterlab/codemirror@npm:^4.0.13, @jupyterlab/codemirror@npm:^4.2.3": - version: 4.2.3 - resolution: "@jupyterlab/codemirror@npm:4.2.3" +"@jupyterlab/codemirror@npm:^4.0.0, @jupyterlab/codemirror@npm:^4.0.13, @jupyterlab/codemirror@npm:^4.2.4": + version: 4.2.4 + resolution: "@jupyterlab/codemirror@npm:4.2.4" dependencies: "@codemirror/autocomplete": ^6.15.0 "@codemirror/commands": ^6.3.3 @@ -1495,11 +1495,11 @@ __metadata: "@codemirror/state": ^6.4.1 "@codemirror/view": ^6.26.0 "@jupyter/ydoc": ^2.0.1 - "@jupyterlab/codeeditor": ^4.2.3 - "@jupyterlab/coreutils": ^6.2.3 - "@jupyterlab/documentsearch": ^4.2.3 - "@jupyterlab/nbformat": ^4.2.3 - "@jupyterlab/translation": ^4.2.3 + "@jupyterlab/codeeditor": ^4.2.4 + "@jupyterlab/coreutils": ^6.2.4 + "@jupyterlab/documentsearch": ^4.2.4 + "@jupyterlab/nbformat": ^4.2.4 + "@jupyterlab/translation": ^4.2.4 "@lezer/common": ^1.2.1 "@lezer/generator": ^1.7.0 "@lezer/highlight": ^1.2.0 @@ -1508,7 +1508,7 @@ __metadata: "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 yjs: ^13.5.40 - checksum: 0464ca3ddd6df260bbcf0edc5b66a23b76d648e3e4497678cecadfab2286f4e8de8e9bb87b1c1cc9d1bec72a89e1c26770c6af94127e88cbc1ac216b79f32ffe + checksum: 2cceaabd8d7400d80e167d8130697fac4877b7b39d3a63b7b20b6ae4422bd27f34738b678deb2b1de3c6db3452fa6b103c50d9817263ce7246538927d6b1a0cc languageName: node linkType: hard @@ -1545,9 +1545,9 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/coreutils@npm:^6.0.0, @jupyterlab/coreutils@npm:^6.0.0-alpha.18, @jupyterlab/coreutils@npm:^6.0.13, @jupyterlab/coreutils@npm:^6.0.5, @jupyterlab/coreutils@npm:^6.2.3": - version: 6.2.3 - resolution: "@jupyterlab/coreutils@npm:6.2.3" +"@jupyterlab/coreutils@npm:^6.0.0, @jupyterlab/coreutils@npm:^6.0.0-alpha.18, @jupyterlab/coreutils@npm:^6.0.13, @jupyterlab/coreutils@npm:^6.0.5, @jupyterlab/coreutils@npm:^6.2.4": + version: 6.2.4 + resolution: "@jupyterlab/coreutils@npm:6.2.4" dependencies: "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -1555,25 +1555,25 @@ __metadata: minimist: ~1.2.0 path-browserify: ^1.0.0 url-parse: ~1.5.4 - checksum: 3c3ac6297c92c811839f932c5ba7b71ad9507b16591e90827b8c8b7986cc597cecc0a3c5f80652b6ae2a2b75f194f8944a8b99f5f1108cac89daa201b2bfc881 + checksum: 4ce2c660dea8a174e805b00cdecfa0b00fd7500cd07f5fbb62c69b48722728162baf90dc9c86c8e72044052d9c0217a53d12a7a5ebdbe9714865d18b8e66593f languageName: node linkType: hard "@jupyterlab/docmanager-extension@npm:^4.0.0": - version: 4.2.3 - resolution: "@jupyterlab/docmanager-extension@npm:4.2.3" - dependencies: - "@jupyterlab/application": ^4.2.3 - "@jupyterlab/apputils": ^4.3.3 - "@jupyterlab/coreutils": ^6.2.3 - "@jupyterlab/docmanager": ^4.2.3 - "@jupyterlab/docregistry": ^4.2.3 - "@jupyterlab/services": ^7.2.3 - "@jupyterlab/settingregistry": ^4.2.3 - "@jupyterlab/statedb": ^4.2.3 - "@jupyterlab/statusbar": ^4.2.3 - "@jupyterlab/translation": ^4.2.3 - "@jupyterlab/ui-components": ^4.2.3 + version: 4.2.4 + resolution: "@jupyterlab/docmanager-extension@npm:4.2.4" + dependencies: + "@jupyterlab/application": ^4.2.4 + "@jupyterlab/apputils": ^4.3.4 + "@jupyterlab/coreutils": ^6.2.4 + "@jupyterlab/docmanager": ^4.2.4 + "@jupyterlab/docregistry": ^4.2.4 + "@jupyterlab/services": ^7.2.4 + "@jupyterlab/settingregistry": ^4.2.4 + "@jupyterlab/statedb": ^4.2.4 + "@jupyterlab/statusbar": ^4.2.4 + "@jupyterlab/translation": ^4.2.4 + "@jupyterlab/ui-components": ^4.2.4 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.3.0 "@lumino/coreutils": ^2.1.2 @@ -1581,22 +1581,22 @@ __metadata: "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.2 react: ^18.2.0 - checksum: e53184dc80f8e902d58a1217af5cbab1dd47edb035449db974f1f4df9845f9ec7d3c7c28322fc2c7c59029e91baf8d5608a32aaa4978c3f5d01cc10187681d1e + checksum: f9bb041caa316b2c54db50d87dfee3ba7e2edba410419ba8645666098da1a9f91212399628cf0d093c7a8daa1f507acd76aae743cd3d752a05540089d122871a languageName: node linkType: hard -"@jupyterlab/docmanager@npm:^4.0.0, @jupyterlab/docmanager@npm:^4.2.3": - version: 4.2.3 - resolution: "@jupyterlab/docmanager@npm:4.2.3" - dependencies: - "@jupyterlab/apputils": ^4.3.3 - "@jupyterlab/coreutils": ^6.2.3 - "@jupyterlab/docregistry": ^4.2.3 - "@jupyterlab/services": ^7.2.3 - "@jupyterlab/statedb": ^4.2.3 - "@jupyterlab/statusbar": ^4.2.3 - "@jupyterlab/translation": ^4.2.3 - "@jupyterlab/ui-components": ^4.2.3 +"@jupyterlab/docmanager@npm:^4.0.0, @jupyterlab/docmanager@npm:^4.2.4": + version: 4.2.4 + resolution: "@jupyterlab/docmanager@npm:4.2.4" + dependencies: + "@jupyterlab/apputils": ^4.3.4 + "@jupyterlab/coreutils": ^6.2.4 + "@jupyterlab/docregistry": ^4.2.4 + "@jupyterlab/services": ^7.2.4 + "@jupyterlab/statedb": ^4.2.4 + "@jupyterlab/statusbar": ^4.2.4 + "@jupyterlab/translation": ^4.2.4 + "@jupyterlab/ui-components": ^4.2.4 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -1606,24 +1606,24 @@ __metadata: "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.2 react: ^18.2.0 - checksum: cb17332ecbb030378e6b2d14c612313c0ba63b15fed12d3f9c3aae1d14783bc2cde52bbf0e441faee34d1addf653f45a7c0b8f937a2c5acaee964c443044e669 + checksum: d821bf84b49c905d051041c18d453a6dbf165d12ce34c05fce1a871496108fa1aad48416c41dc8363d48a0b587a2f75440e7fbe073d803d5b607e9945705e553 languageName: node linkType: hard -"@jupyterlab/docregistry@npm:^4.0.0, @jupyterlab/docregistry@npm:^4.0.13, @jupyterlab/docregistry@npm:^4.2.3": - version: 4.2.3 - resolution: "@jupyterlab/docregistry@npm:4.2.3" +"@jupyterlab/docregistry@npm:^4.0.0, @jupyterlab/docregistry@npm:^4.0.13, @jupyterlab/docregistry@npm:^4.2.4": + version: 4.2.4 + resolution: "@jupyterlab/docregistry@npm:4.2.4" dependencies: "@jupyter/ydoc": ^2.0.1 - "@jupyterlab/apputils": ^4.3.3 - "@jupyterlab/codeeditor": ^4.2.3 - "@jupyterlab/coreutils": ^6.2.3 - "@jupyterlab/observables": ^5.2.3 - "@jupyterlab/rendermime": ^4.2.3 - "@jupyterlab/rendermime-interfaces": ^3.10.3 - "@jupyterlab/services": ^7.2.3 - "@jupyterlab/translation": ^4.2.3 - "@jupyterlab/ui-components": ^4.2.3 + "@jupyterlab/apputils": ^4.3.4 + "@jupyterlab/codeeditor": ^4.2.4 + "@jupyterlab/coreutils": ^6.2.4 + "@jupyterlab/observables": ^5.2.4 + "@jupyterlab/rendermime": ^4.2.4 + "@jupyterlab/rendermime-interfaces": ^3.10.4 + "@jupyterlab/services": ^7.2.4 + "@jupyterlab/translation": ^4.2.4 + "@jupyterlab/ui-components": ^4.2.4 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -1632,17 +1632,17 @@ __metadata: "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.2 react: ^18.2.0 - checksum: da4634294f8e09e7ae8c0a930450291e5b865bfdec107f4d7ea2353cffec12405ca58f57eef50e0ab853db46f5e8a386f03e32e2f96673d7d906f114af823510 + checksum: 725d4a6f4fc960ff9607b82c0d8aa065a0c7770d730ae5022be9db8defede6fa65f3c03d65c4518df8a651219d347c9d7ca75c18134907847e3759154c325650 languageName: node linkType: hard -"@jupyterlab/documentsearch@npm:^4.0.13, @jupyterlab/documentsearch@npm:^4.2.3": - version: 4.2.3 - resolution: "@jupyterlab/documentsearch@npm:4.2.3" +"@jupyterlab/documentsearch@npm:^4.0.13, @jupyterlab/documentsearch@npm:^4.2.4": + version: 4.2.4 + resolution: "@jupyterlab/documentsearch@npm:4.2.4" dependencies: - "@jupyterlab/apputils": ^4.3.3 - "@jupyterlab/translation": ^4.2.3 - "@jupyterlab/ui-components": ^4.2.3 + "@jupyterlab/apputils": ^4.3.4 + "@jupyterlab/translation": ^4.2.4 + "@jupyterlab/ui-components": ^4.2.4 "@lumino/commands": ^2.3.0 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -1651,46 +1651,46 @@ __metadata: "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.2 react: ^18.2.0 - checksum: af3c9bd88e132b0d9e2a829244196e603720ff92404f05475d1b36f837d10a07579201669d91d9a2b1d8391ec17e46ab965c7b0fa608c753a176af69a117ab0b + checksum: 06f299de3a0eb40a72b27f0d7628f3e0109f1fa22208021ca79655209d14b1db83b15cf5c6d963f86b61ad33c418adc4ec81c4fbd68128a9b71d7d0200ee6061 languageName: node linkType: hard "@jupyterlab/filebrowser-extension@npm:^4.0.0": - version: 4.2.3 - resolution: "@jupyterlab/filebrowser-extension@npm:4.2.3" - dependencies: - "@jupyterlab/application": ^4.2.3 - "@jupyterlab/apputils": ^4.3.3 - "@jupyterlab/coreutils": ^6.2.3 - "@jupyterlab/docmanager": ^4.2.3 - "@jupyterlab/docregistry": ^4.2.3 - "@jupyterlab/filebrowser": ^4.2.3 - "@jupyterlab/services": ^7.2.3 - "@jupyterlab/settingregistry": ^4.2.3 - "@jupyterlab/statedb": ^4.2.3 - "@jupyterlab/statusbar": ^4.2.3 - "@jupyterlab/translation": ^4.2.3 - "@jupyterlab/ui-components": ^4.2.3 + version: 4.2.4 + resolution: "@jupyterlab/filebrowser-extension@npm:4.2.4" + dependencies: + "@jupyterlab/application": ^4.2.4 + "@jupyterlab/apputils": ^4.3.4 + "@jupyterlab/coreutils": ^6.2.4 + "@jupyterlab/docmanager": ^4.2.4 + "@jupyterlab/docregistry": ^4.2.4 + "@jupyterlab/filebrowser": ^4.2.4 + "@jupyterlab/services": ^7.2.4 + "@jupyterlab/settingregistry": ^4.2.4 + "@jupyterlab/statedb": ^4.2.4 + "@jupyterlab/statusbar": ^4.2.4 + "@jupyterlab/translation": ^4.2.4 + "@jupyterlab/ui-components": ^4.2.4 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.3.0 "@lumino/widgets": ^2.3.2 - checksum: e09c09aac15e33a0e51f81df084938611695ba91ab9fff55b409d8d91ee42528d9895caa3691d268b9e5219db42d86dde006cbc34b4cacf05328ca8224a9ab54 + checksum: 103448df0ae965d1b67e550506ec65d42e54336384e8a3f16f10c1314c59a2d5eda64a1ec876ebe6a2724b3088f9350b1404530779194af740e470a4dcfe72f2 languageName: node linkType: hard -"@jupyterlab/filebrowser@npm:^4.0.0, @jupyterlab/filebrowser@npm:^4.2.3": - version: 4.2.3 - resolution: "@jupyterlab/filebrowser@npm:4.2.3" - dependencies: - "@jupyterlab/apputils": ^4.3.3 - "@jupyterlab/coreutils": ^6.2.3 - "@jupyterlab/docmanager": ^4.2.3 - "@jupyterlab/docregistry": ^4.2.3 - "@jupyterlab/services": ^7.2.3 - "@jupyterlab/statedb": ^4.2.3 - "@jupyterlab/statusbar": ^4.2.3 - "@jupyterlab/translation": ^4.2.3 - "@jupyterlab/ui-components": ^4.2.3 +"@jupyterlab/filebrowser@npm:^4.0.0, @jupyterlab/filebrowser@npm:^4.2.4": + version: 4.2.4 + resolution: "@jupyterlab/filebrowser@npm:4.2.4" + dependencies: + "@jupyterlab/apputils": ^4.3.4 + "@jupyterlab/coreutils": ^6.2.4 + "@jupyterlab/docmanager": ^4.2.4 + "@jupyterlab/docregistry": ^4.2.4 + "@jupyterlab/services": ^7.2.4 + "@jupyterlab/statedb": ^4.2.4 + "@jupyterlab/statusbar": ^4.2.4 + "@jupyterlab/translation": ^4.2.4 + "@jupyterlab/ui-components": ^4.2.4 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -1702,60 +1702,60 @@ __metadata: "@lumino/virtualdom": ^2.0.1 "@lumino/widgets": ^2.3.2 react: ^18.2.0 - checksum: d0a4027d7fe277449f54b07e7778903eb1ba99fd983289fb6fb186e9e8237ba393ad377d06dcaa73a3e0b40826ba0e61403bc932df70923fa78ef7f93e3f9e1c + checksum: 563613e176c50bc0a7015e38a1ebac0307a9a15358bf5eee3dfe021303928b44bd5962f595f3e7bb4c20dff6175d503419f31bc5586713e5c831e3ace89583ca languageName: node linkType: hard "@jupyterlab/fileeditor@npm:^4.0.0": - version: 4.2.3 - resolution: "@jupyterlab/fileeditor@npm:4.2.3" + version: 4.2.4 + resolution: "@jupyterlab/fileeditor@npm:4.2.4" dependencies: "@jupyter/ydoc": ^2.0.1 - "@jupyterlab/apputils": ^4.3.3 - "@jupyterlab/codeeditor": ^4.2.3 - "@jupyterlab/codemirror": ^4.2.3 - "@jupyterlab/coreutils": ^6.2.3 - "@jupyterlab/docregistry": ^4.2.3 - "@jupyterlab/documentsearch": ^4.2.3 - "@jupyterlab/lsp": ^4.2.3 - "@jupyterlab/statusbar": ^4.2.3 - "@jupyterlab/toc": ^6.2.3 - "@jupyterlab/translation": ^4.2.3 - "@jupyterlab/ui-components": ^4.2.3 + "@jupyterlab/apputils": ^4.3.4 + "@jupyterlab/codeeditor": ^4.2.4 + "@jupyterlab/codemirror": ^4.2.4 + "@jupyterlab/coreutils": ^6.2.4 + "@jupyterlab/docregistry": ^4.2.4 + "@jupyterlab/documentsearch": ^4.2.4 + "@jupyterlab/lsp": ^4.2.4 + "@jupyterlab/statusbar": ^4.2.4 + "@jupyterlab/toc": ^6.2.4 + "@jupyterlab/translation": ^4.2.4 + "@jupyterlab/ui-components": ^4.2.4 "@lumino/commands": ^2.3.0 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/widgets": ^2.3.2 react: ^18.2.0 regexp-match-indices: ^1.0.2 - checksum: 54470a0a71f3110640c687e8e3a0b09afad5dd5470caad04c95744732212d2aaac14db6168100d31f80244dc42d09f927d524989223832787168c3d11a9a206e + checksum: a076a16df80097d127343f3b0c9462270f4bbd39fb6a129c7c4cca5161c2afe6a5c4a30fbbbd86193809b124af3433b2cdd451dbb8348381d8a1b2e594125567 languageName: node linkType: hard "@jupyterlab/launcher-extension@npm:^4.0.0": - version: 4.2.3 - resolution: "@jupyterlab/launcher-extension@npm:4.2.3" - dependencies: - "@jupyterlab/application": ^4.2.3 - "@jupyterlab/apputils": ^4.3.3 - "@jupyterlab/filebrowser": ^4.2.3 - "@jupyterlab/launcher": ^4.2.3 - "@jupyterlab/translation": ^4.2.3 - "@jupyterlab/ui-components": ^4.2.3 + version: 4.2.4 + resolution: "@jupyterlab/launcher-extension@npm:4.2.4" + dependencies: + "@jupyterlab/application": ^4.2.4 + "@jupyterlab/apputils": ^4.3.4 + "@jupyterlab/filebrowser": ^4.2.4 + "@jupyterlab/launcher": ^4.2.4 + "@jupyterlab/translation": ^4.2.4 + "@jupyterlab/ui-components": ^4.2.4 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.2 - checksum: c8c5d57e5150c59d6312b9c896110cf06e68b49b012b86958215140ed628bfbbbf08e98b5fbdbb577a7efbb7945f0628f28e6696dabe7414b3ebd8d765c32ae0 + checksum: 387f3e0ef11dbae68b3930aaae393deafb84e30b0814294bcd95a0c773dc520b7b0ec27a8e0e1e18ed7a6140e238b7283b2217b233ea4c6fc9f483e9f06f688e languageName: node linkType: hard -"@jupyterlab/launcher@npm:^4.0.0, @jupyterlab/launcher@npm:^4.2.3": - version: 4.2.3 - resolution: "@jupyterlab/launcher@npm:4.2.3" +"@jupyterlab/launcher@npm:^4.0.0, @jupyterlab/launcher@npm:^4.2.4": + version: 4.2.4 + resolution: "@jupyterlab/launcher@npm:4.2.4" dependencies: - "@jupyterlab/apputils": ^4.3.3 - "@jupyterlab/translation": ^4.2.3 - "@jupyterlab/ui-components": ^4.2.3 + "@jupyterlab/apputils": ^4.3.4 + "@jupyterlab/translation": ^4.2.4 + "@jupyterlab/ui-components": ^4.2.4 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.3.0 "@lumino/coreutils": ^2.1.2 @@ -1763,40 +1763,40 @@ __metadata: "@lumino/properties": ^2.0.1 "@lumino/widgets": ^2.3.2 react: ^18.2.0 - checksum: f28e092acd5abb33f66af8c8cb935a2ad8e916e305cb0c396901ce1eaa754d30a08000121373b5c15eda6925cecd7c733e92f6a2cc57a27d7dcaafa78440d4cc + checksum: be6f4dc1b11696fa2f103fea2e95670dea0535d3c4f66ed397d78c50188cb6f617e1b328d3fad087089e7f73a76e2117b2c59d69432115ad27b3301e093905c1 languageName: node linkType: hard "@jupyterlab/logconsole@npm:^4.0.0": - version: 4.2.3 - resolution: "@jupyterlab/logconsole@npm:4.2.3" - dependencies: - "@jupyterlab/coreutils": ^6.2.3 - "@jupyterlab/nbformat": ^4.2.3 - "@jupyterlab/outputarea": ^4.2.3 - "@jupyterlab/rendermime": ^4.2.3 - "@jupyterlab/services": ^7.2.3 - "@jupyterlab/translation": ^4.2.3 + version: 4.2.4 + resolution: "@jupyterlab/logconsole@npm:4.2.4" + dependencies: + "@jupyterlab/coreutils": ^6.2.4 + "@jupyterlab/nbformat": ^4.2.4 + "@jupyterlab/outputarea": ^4.2.4 + "@jupyterlab/rendermime": ^4.2.4 + "@jupyterlab/services": ^7.2.4 + "@jupyterlab/translation": ^4.2.4 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.2 - checksum: b4f2ab9c43ae829a66a9fbec4c8f68fee41f4cf447e05e3bb0cb76f72710f2a68d35eb22fac20bd7eaac992e0811055ca4885d1c2968694c98134861936413f4 + checksum: 50f1f224e8f82bae5c345ec132dddcbfd2cc9bd5378555d660fcb50cbb8453cdd0ace49282c4bfd7b80b6917977121d70666bf528490a2e67eda2beeac1dfbad languageName: node linkType: hard -"@jupyterlab/lsp@npm:^4.0.13, @jupyterlab/lsp@npm:^4.2.3": - version: 4.2.3 - resolution: "@jupyterlab/lsp@npm:4.2.3" - dependencies: - "@jupyterlab/apputils": ^4.3.3 - "@jupyterlab/codeeditor": ^4.2.3 - "@jupyterlab/codemirror": ^4.2.3 - "@jupyterlab/coreutils": ^6.2.3 - "@jupyterlab/docregistry": ^4.2.3 - "@jupyterlab/services": ^7.2.3 - "@jupyterlab/translation": ^4.2.3 +"@jupyterlab/lsp@npm:^4.0.13, @jupyterlab/lsp@npm:^4.2.4": + version: 4.2.4 + resolution: "@jupyterlab/lsp@npm:4.2.4" + dependencies: + "@jupyterlab/apputils": ^4.3.4 + "@jupyterlab/codeeditor": ^4.2.4 + "@jupyterlab/codemirror": ^4.2.4 + "@jupyterlab/coreutils": ^6.2.4 + "@jupyterlab/docregistry": ^4.2.4 + "@jupyterlab/services": ^7.2.4 + "@jupyterlab/translation": ^4.2.4 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 @@ -1805,54 +1805,54 @@ __metadata: vscode-jsonrpc: ^6.0.0 vscode-languageserver-protocol: ^3.17.0 vscode-ws-jsonrpc: ~1.0.2 - checksum: 06a75a3b29770f1cd3e3b16d01fe9b2a3fd30a1b567fe13f89548ab10f4b7f8e075c49107362c16d10bcb98c7de8592496a90f4169502a8ec568394a6081744c + checksum: 0a2b951fbaac5359c679d9d6b76a18c6170f2ad2a35cf549aff269ef1fac8ba3fa2d78ae8930c095630a02ebfab93d01bdb419fa93db4d460661a265d69b6d1b languageName: node linkType: hard "@jupyterlab/mainmenu-extension@npm:^4.0.0": - version: 4.2.3 - resolution: "@jupyterlab/mainmenu-extension@npm:4.2.3" - dependencies: - "@jupyterlab/application": ^4.2.3 - "@jupyterlab/apputils": ^4.3.3 - "@jupyterlab/coreutils": ^6.2.3 - "@jupyterlab/docmanager": ^4.2.3 - "@jupyterlab/filebrowser": ^4.2.3 - "@jupyterlab/mainmenu": ^4.2.3 - "@jupyterlab/services": ^7.2.3 - "@jupyterlab/settingregistry": ^4.2.3 - "@jupyterlab/translation": ^4.2.3 - "@jupyterlab/ui-components": ^4.2.3 + version: 4.2.4 + resolution: "@jupyterlab/mainmenu-extension@npm:4.2.4" + dependencies: + "@jupyterlab/application": ^4.2.4 + "@jupyterlab/apputils": ^4.3.4 + "@jupyterlab/coreutils": ^6.2.4 + "@jupyterlab/docmanager": ^4.2.4 + "@jupyterlab/filebrowser": ^4.2.4 + "@jupyterlab/mainmenu": ^4.2.4 + "@jupyterlab/services": ^7.2.4 + "@jupyterlab/settingregistry": ^4.2.4 + "@jupyterlab/translation": ^4.2.4 + "@jupyterlab/ui-components": ^4.2.4 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/widgets": ^2.3.2 - checksum: 6f917e7fae1e46472eeaf65cdf610022c94d1327a157bf680c23a493ddb18164c778fd71c692ae106005975e6811515722cfa07a1f524571ce2e278f2f6cb4f9 + checksum: 66ada3ceb6e9bade1e29cb49b2340ba2e122a8da9fe299669ec691fa27d4735edc38ceaad806b0754580712800a10e4ff1e838b6a0459e9bbe89eb8d74ac49b1 languageName: node linkType: hard -"@jupyterlab/mainmenu@npm:^4.0.0, @jupyterlab/mainmenu@npm:^4.2.3": - version: 4.2.3 - resolution: "@jupyterlab/mainmenu@npm:4.2.3" +"@jupyterlab/mainmenu@npm:^4.0.0, @jupyterlab/mainmenu@npm:^4.2.4": + version: 4.2.4 + resolution: "@jupyterlab/mainmenu@npm:4.2.4" dependencies: - "@jupyterlab/apputils": ^4.3.3 - "@jupyterlab/translation": ^4.2.3 - "@jupyterlab/ui-components": ^4.2.3 + "@jupyterlab/apputils": ^4.3.4 + "@jupyterlab/translation": ^4.2.4 + "@jupyterlab/ui-components": ^4.2.4 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.3.0 "@lumino/coreutils": ^2.1.2 "@lumino/widgets": ^2.3.2 - checksum: 13868244318c3a82d63f9b7d7d4acdd6c58e822644f242de97b7abc0fa26d735ccbf830b0a338c177ea07fd28163ef6f87d34fbad76814a03b54492a1a8a3b76 + checksum: 1142080fa199eb737b1057d7287979f387273b5338869e46f8cc4187098512db83c2644db438a42899d737f842e0b3dde6861b709e9b55ebfaac28bedfa5ab22 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.13, @jupyterlab/nbformat@npm:^4.2.3": - version: 4.2.3 - resolution: "@jupyterlab/nbformat@npm:4.2.3" +"@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.13, @jupyterlab/nbformat@npm:^4.2.4": + version: 4.2.4 + resolution: "@jupyterlab/nbformat@npm:4.2.4" dependencies: "@lumino/coreutils": ^2.1.2 - checksum: 890844bfe8966023d8b32ba286be159712509005e7c88eb71ba87f9ab6454cc8cbb2e5922e14ba524a147bb2adff2c82563f9c5e7e2331c6dcdef0fbe18e4f97 + checksum: 61ac75dbaa32ef196eb9e177529ba259c6b0648601646b52ec8a1b25dbca4fce8c6d78090b47fd0674bf993f883fa62223dc52e50a59f1b2c843a9d5c8d02ef4 languageName: node linkType: hard @@ -1914,30 +1914,30 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/observables@npm:^5.0.0, @jupyterlab/observables@npm:^5.0.13, @jupyterlab/observables@npm:^5.2.3": - version: 5.2.3 - resolution: "@jupyterlab/observables@npm:5.2.3" +"@jupyterlab/observables@npm:^5.0.0, @jupyterlab/observables@npm:^5.0.13, @jupyterlab/observables@npm:^5.2.4": + version: 5.2.4 + resolution: "@jupyterlab/observables@npm:5.2.4" dependencies: "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 - checksum: 4e3a0ee95bb37f3148d9b36804ffdccb960f48e001394facb3c964035d61c7ba46572eb033dbd3422822377e408bb00fa28ab1386a48390f66b09d52aefda483 + checksum: 48af3aadfafa8707643678f127d6c9e4e9a2b9ad009cfdbf9de5df7212bfbbb213ab786b05364d647477416a790580b4fd9aa8ade817fd9108df23a815741b05 languageName: node linkType: hard -"@jupyterlab/outputarea@npm:^4.0.0, @jupyterlab/outputarea@npm:^4.2.3": - version: 4.2.3 - resolution: "@jupyterlab/outputarea@npm:4.2.3" - dependencies: - "@jupyterlab/apputils": ^4.3.3 - "@jupyterlab/nbformat": ^4.2.3 - "@jupyterlab/observables": ^5.2.3 - "@jupyterlab/rendermime": ^4.2.3 - "@jupyterlab/rendermime-interfaces": ^3.10.3 - "@jupyterlab/services": ^7.2.3 - "@jupyterlab/translation": ^4.2.3 +"@jupyterlab/outputarea@npm:^4.0.0, @jupyterlab/outputarea@npm:^4.2.4": + version: 4.2.4 + resolution: "@jupyterlab/outputarea@npm:4.2.4" + dependencies: + "@jupyterlab/apputils": ^4.3.4 + "@jupyterlab/nbformat": ^4.2.4 + "@jupyterlab/observables": ^5.2.4 + "@jupyterlab/rendermime": ^4.2.4 + "@jupyterlab/rendermime-interfaces": ^3.10.4 + "@jupyterlab/services": ^7.2.4 + "@jupyterlab/translation": ^4.2.4 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -1945,33 +1945,33 @@ __metadata: "@lumino/properties": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.2 - checksum: 5bcd65c224b944c6e27b7c59136e7548b650bb9ae193873b73d95972fb2894221372f99ab6e98615d8d9f0936f6963a7462e91f24f1483a5aa6cc3d2cf9d33f4 + checksum: 4106822616910bd4fab9e20e78960d2f7402764f0a88ebe3b831ff566705c5c1b732bde015700b3a70a445486f3c2d682d82b70acb00745fd2c83d97f5121ca1 languageName: node linkType: hard -"@jupyterlab/property-inspector@npm:^4.2.3": - version: 4.2.3 - resolution: "@jupyterlab/property-inspector@npm:4.2.3" +"@jupyterlab/property-inspector@npm:^4.2.4": + version: 4.2.4 + resolution: "@jupyterlab/property-inspector@npm:4.2.4" dependencies: - "@jupyterlab/application": ^4.2.3 - "@jupyterlab/translation": ^4.2.3 - "@jupyterlab/ui-components": ^4.2.3 + "@jupyterlab/application": ^4.2.4 + "@jupyterlab/translation": ^4.2.4 + "@jupyterlab/ui-components": ^4.2.4 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.2 react: ^18.2.0 - checksum: 5ab4e241e3f30642930cc0f3c5c7ff35453aac69ef77c3ec4a520b578548f076ab1fda493e9d244fe86e6694a687fd3c93ca265719808c18ed0351ca08e6f80a + checksum: 7eac4305b395d5145490d3a21009eb07b049d690a4da8797dd3dfbf8cef2e8ade2f270eb19998f321bccc19ded16e21eedddbddccaa997f3191836b80f94c1fe languageName: node linkType: hard -"@jupyterlab/rendermime-interfaces@npm:^3.10.3, @jupyterlab/rendermime-interfaces@npm:^3.6.7, @jupyterlab/rendermime-interfaces@npm:^3.8.0, @jupyterlab/rendermime-interfaces@npm:^3.8.13": - version: 3.10.3 - resolution: "@jupyterlab/rendermime-interfaces@npm:3.10.3" +"@jupyterlab/rendermime-interfaces@npm:^3.10.4, @jupyterlab/rendermime-interfaces@npm:^3.6.7, @jupyterlab/rendermime-interfaces@npm:^3.8.0, @jupyterlab/rendermime-interfaces@npm:^3.8.13": + version: 3.10.4 + resolution: "@jupyterlab/rendermime-interfaces@npm:3.10.4" dependencies: "@lumino/coreutils": ^1.11.0 || ^2.1.2 "@lumino/widgets": ^1.37.2 || ^2.3.2 - checksum: c30f0674e2bafa6a2d4479f36b467a72cce16cf00052d6e0cf718262b9687b9254783295c00f3a45e0331c129ba9cf6abfb638b6ba64131678a8153a55a7ce2a + checksum: 9671389dc1714a1c12e1c5a7b7b28388f75e28a53a05721f26035a731578a36ab88c3805dd7425a74857142100ac1b6ec3edf2bd131430a3bac0a9b23ab1fccd languageName: node linkType: hard @@ -1998,51 +1998,51 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/rendermime@npm:^4.0.0, @jupyterlab/rendermime@npm:^4.0.13, @jupyterlab/rendermime@npm:^4.2.3": - version: 4.2.3 - resolution: "@jupyterlab/rendermime@npm:4.2.3" - dependencies: - "@jupyterlab/apputils": ^4.3.3 - "@jupyterlab/coreutils": ^6.2.3 - "@jupyterlab/nbformat": ^4.2.3 - "@jupyterlab/observables": ^5.2.3 - "@jupyterlab/rendermime-interfaces": ^3.10.3 - "@jupyterlab/services": ^7.2.3 - "@jupyterlab/translation": ^4.2.3 +"@jupyterlab/rendermime@npm:^4.0.0, @jupyterlab/rendermime@npm:^4.0.13, @jupyterlab/rendermime@npm:^4.2.4": + version: 4.2.4 + resolution: "@jupyterlab/rendermime@npm:4.2.4" + dependencies: + "@jupyterlab/apputils": ^4.3.4 + "@jupyterlab/coreutils": ^6.2.4 + "@jupyterlab/nbformat": ^4.2.4 + "@jupyterlab/observables": ^5.2.4 + "@jupyterlab/rendermime-interfaces": ^3.10.4 + "@jupyterlab/services": ^7.2.4 + "@jupyterlab/translation": ^4.2.4 "@lumino/coreutils": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.2 lodash.escape: ^4.0.1 - checksum: c8ed06714364d45aff72fee58ddb53cd483272bf2d52e5d0aa5bf71ac5013f316c67b7d5b744e38729a4b4f8415f7d4fbe2901e300e21d7b05a2677e04fb44e2 + checksum: 45dbe6a32d4718d1e1e35d47c7aadc35c5f59ed9a813129b7736e6aa95122c8d14ef092ca8f0765fb95258352daee6d48c65016d98efcf3bb2d7f278661753f7 languageName: node linkType: hard "@jupyterlab/services@npm: ^7.0.0": - version: 7.2.3 - resolution: "@jupyterlab/services@npm:7.2.3" + version: 7.2.4 + resolution: "@jupyterlab/services@npm:7.2.4" dependencies: "@jupyter/ydoc": ^2.0.1 - "@jupyterlab/coreutils": ^6.2.3 - "@jupyterlab/nbformat": ^4.2.3 - "@jupyterlab/settingregistry": ^4.2.3 - "@jupyterlab/statedb": ^4.2.3 + "@jupyterlab/coreutils": ^6.2.4 + "@jupyterlab/nbformat": ^4.2.4 + "@jupyterlab/settingregistry": ^4.2.4 + "@jupyterlab/statedb": ^4.2.4 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/polling": ^2.1.2 "@lumino/properties": ^2.0.1 "@lumino/signaling": ^2.1.2 ws: ^8.11.0 - checksum: 61d7eb84807ddeeaa5105bd127fb69ebc3ff939436938c1c34fdae616c3dbb5254c09d0a3fa825c76348c43de5834d14de438d4548f122e97522c4bb5172ce8e + checksum: 7262d6ac6bc8a41e03ec45c7d4dd8e8eb2547dff315a9be9c81cff0e5f4f9e3fb12fd3d008cb4132efced9800023470fb5fef5f446307903b8cdee8c1ca96d34 languageName: node linkType: hard -"@jupyterlab/settingregistry@npm:^4.0.0, @jupyterlab/settingregistry@npm:^4.0.13, @jupyterlab/settingregistry@npm:^4.2.3": - version: 4.2.3 - resolution: "@jupyterlab/settingregistry@npm:4.2.3" +"@jupyterlab/settingregistry@npm:^4.0.0, @jupyterlab/settingregistry@npm:^4.0.13, @jupyterlab/settingregistry@npm:^4.2.4": + version: 4.2.4 + resolution: "@jupyterlab/settingregistry@npm:4.2.4" dependencies: - "@jupyterlab/nbformat": ^4.2.3 - "@jupyterlab/statedb": ^4.2.3 + "@jupyterlab/nbformat": ^4.2.4 + "@jupyterlab/statedb": ^4.2.4 "@lumino/commands": ^2.3.0 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -2052,7 +2052,7 @@ __metadata: json5: ^2.2.3 peerDependencies: react: ">=16" - checksum: 72eff0c5af9b6e9c3be36aea7e6b435f4bc52e770284f1c2d49061577d37bbec697afc7fe7673a22ab15e35ce4e88e3a4da485f432f42b1b4ec35bd8dfba4b3c + checksum: c4d1bfef80811697c0979f76b3a0c1f6597d6f07fd227004fd7f1237abc20ac6dda4cfffcb487166625e3c72ffa5c9e25e0a865c86217e9280207362b8864247 languageName: node linkType: hard @@ -2079,16 +2079,16 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/statedb@npm:^4.0.0, @jupyterlab/statedb@npm:^4.0.13, @jupyterlab/statedb@npm:^4.2.3": - version: 4.2.3 - resolution: "@jupyterlab/statedb@npm:4.2.3" +"@jupyterlab/statedb@npm:^4.0.0, @jupyterlab/statedb@npm:^4.0.13, @jupyterlab/statedb@npm:^4.2.4": + version: 4.2.4 + resolution: "@jupyterlab/statedb@npm:4.2.4" dependencies: "@lumino/commands": ^2.3.0 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/properties": ^2.0.1 "@lumino/signaling": ^2.1.2 - checksum: 6969e54fa8370a918a4d78391116b83bd3c5afb25e1f66d7369ac2d24659b89a32bbb23500d81b50744698c504a47bd8bc355b16e4ec6ea877b74ec512aab3f8 + checksum: 63d2eeab1e4f45593b417f7aa4bbff5a78703858d2c49497632f37d262acca37e4600766dcd3d744de4048ba8e6726dcbe44718453a1d43eb088380f48e70609 languageName: node linkType: hard @@ -2114,11 +2114,11 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/statusbar@npm:^4.0.0, @jupyterlab/statusbar@npm:^4.0.13, @jupyterlab/statusbar@npm:^4.2.3": - version: 4.2.3 - resolution: "@jupyterlab/statusbar@npm:4.2.3" +"@jupyterlab/statusbar@npm:^4.0.0, @jupyterlab/statusbar@npm:^4.0.13, @jupyterlab/statusbar@npm:^4.2.4": + version: 4.2.4 + resolution: "@jupyterlab/statusbar@npm:4.2.4" dependencies: - "@jupyterlab/ui-components": ^4.2.3 + "@jupyterlab/ui-components": ^4.2.4 "@lumino/algorithm": ^2.0.1 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 @@ -2126,64 +2126,64 @@ __metadata: "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.2 react: ^18.2.0 - checksum: f5da446064b564e6fddd4f77b63548cfb593204adabe68e0c494b999639c6779298fbd75d30b94768e73be6d59b68baf137a1bc5d75de95f962b1c1eb4eca1c1 + checksum: 0c7a79473bfe2cfafcd20f3f3ffe5de4192edcf3bcd0a2cb2ac1e1c9aaf49be31d5f70da0c8301d1d347d87400100a570f00a914367150948eb914dbf480d787 languageName: node linkType: hard "@jupyterlab/theme-dark-extension@npm:^4.0.0": - version: 4.2.3 - resolution: "@jupyterlab/theme-dark-extension@npm:4.2.3" + version: 4.2.4 + resolution: "@jupyterlab/theme-dark-extension@npm:4.2.4" dependencies: - "@jupyterlab/application": ^4.2.3 - "@jupyterlab/apputils": ^4.3.3 - "@jupyterlab/translation": ^4.2.3 - checksum: ef9d8a235abefcee3007a866a6a0e669f141c0904115f07b9d3db12530e84c32ad0aad273940c50fdcbec4c2e0907ec873d18463feadb9e395f7ff469c05c5d7 + "@jupyterlab/application": ^4.2.4 + "@jupyterlab/apputils": ^4.3.4 + "@jupyterlab/translation": ^4.2.4 + checksum: d9755feed00d1c92ba6f35de94ff0b5bb3e782fd64b083f53f81c200cab3c3dbfbae5e48deea9ddf77e52c86a06b5d26385d4dc6ddbe28375624eea057086f10 languageName: node linkType: hard "@jupyterlab/theme-light-extension@npm:^4.0.0": - version: 4.2.3 - resolution: "@jupyterlab/theme-light-extension@npm:4.2.3" + version: 4.2.4 + resolution: "@jupyterlab/theme-light-extension@npm:4.2.4" dependencies: - "@jupyterlab/application": ^4.2.3 - "@jupyterlab/apputils": ^4.3.3 - "@jupyterlab/translation": ^4.2.3 - checksum: 579827b6c598a8e5317097424c76bdc9daf55ce89a8a20e5a945fe2254c843112c291611b82f99f08d5c2369d674851ff290d518577f1d0e7de66e2d6a380e0e + "@jupyterlab/application": ^4.2.4 + "@jupyterlab/apputils": ^4.3.4 + "@jupyterlab/translation": ^4.2.4 + checksum: f735cf09694736aa4decdc7d874a8c855b5a61a168655cd1542f5461fe7a9af131d7be02c0a1417244ed00a634297e2c4b12fdd06d1c0bc3725c01f7009ead97 languageName: node linkType: hard -"@jupyterlab/toc@npm:^6.0.13, @jupyterlab/toc@npm:^6.2.3": - version: 6.2.3 - resolution: "@jupyterlab/toc@npm:6.2.3" - dependencies: - "@jupyterlab/apputils": ^4.3.3 - "@jupyterlab/coreutils": ^6.2.3 - "@jupyterlab/docregistry": ^4.2.3 - "@jupyterlab/observables": ^5.2.3 - "@jupyterlab/rendermime": ^4.2.3 - "@jupyterlab/rendermime-interfaces": ^3.10.3 - "@jupyterlab/translation": ^4.2.3 - "@jupyterlab/ui-components": ^4.2.3 +"@jupyterlab/toc@npm:^6.0.13, @jupyterlab/toc@npm:^6.2.4": + version: 6.2.4 + resolution: "@jupyterlab/toc@npm:6.2.4" + dependencies: + "@jupyterlab/apputils": ^4.3.4 + "@jupyterlab/coreutils": ^6.2.4 + "@jupyterlab/docregistry": ^4.2.4 + "@jupyterlab/observables": ^5.2.4 + "@jupyterlab/rendermime": ^4.2.4 + "@jupyterlab/rendermime-interfaces": ^3.10.4 + "@jupyterlab/translation": ^4.2.4 + "@jupyterlab/ui-components": ^4.2.4 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/messaging": ^2.0.1 "@lumino/signaling": ^2.1.2 "@lumino/widgets": ^2.3.2 react: ^18.2.0 - checksum: e855adc3e2d825cbe07cda38c9fe03bfda2b8bbf36c320b30a1a70ab57d8c42cfe11a29ccc8bc7598c769443ed5baec54327830b3a7038b7285db2a3d47b7adb + checksum: 1bfc97bd798f67253a8bb26715525eaabd16b71d1d60d9d99a38285ffa212c6760d8a12ba9e95c1d5e395dd0605f7f9a23755946a6cc18dc9590ff7fe14bae37 languageName: node linkType: hard "@jupyterlab/translation-extension@npm:^4.0.0": - version: 4.2.3 - resolution: "@jupyterlab/translation-extension@npm:4.2.3" + version: 4.2.4 + resolution: "@jupyterlab/translation-extension@npm:4.2.4" dependencies: - "@jupyterlab/application": ^4.2.3 - "@jupyterlab/apputils": ^4.3.3 - "@jupyterlab/mainmenu": ^4.2.3 - "@jupyterlab/settingregistry": ^4.2.3 - "@jupyterlab/translation": ^4.2.3 - checksum: 5d419a7b8088cbbecf1c29f4f5915ce651acbcc4e95e14e0d4622bc62c3643f3c1142780f9550df230ea0d59f2a2f66ccb5313f7c2c721e0e1a8e34d158ac22f + "@jupyterlab/application": ^4.2.4 + "@jupyterlab/apputils": ^4.3.4 + "@jupyterlab/mainmenu": ^4.2.4 + "@jupyterlab/settingregistry": ^4.2.4 + "@jupyterlab/translation": ^4.2.4 + checksum: 4061b020593e6d43c97bd4a4f5ed9c0b3625b3a84b81d53f06cb023bc6347614b9e9bd7338f81c5cedf1d24dc3f9b489cbb8096c31e48a3941ad0d37c6e9fa4a languageName: node linkType: hard @@ -2199,16 +2199,16 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/translation@npm:^4.0.0, @jupyterlab/translation@npm:^4.0.13, @jupyterlab/translation@npm:^4.2.3": - version: 4.2.3 - resolution: "@jupyterlab/translation@npm:4.2.3" +"@jupyterlab/translation@npm:^4.0.0, @jupyterlab/translation@npm:^4.0.13, @jupyterlab/translation@npm:^4.2.4": + version: 4.2.4 + resolution: "@jupyterlab/translation@npm:4.2.4" dependencies: - "@jupyterlab/coreutils": ^6.2.3 - "@jupyterlab/rendermime-interfaces": ^3.10.3 - "@jupyterlab/services": ^7.2.3 - "@jupyterlab/statedb": ^4.2.3 + "@jupyterlab/coreutils": ^6.2.4 + "@jupyterlab/rendermime-interfaces": ^3.10.4 + "@jupyterlab/services": ^7.2.4 + "@jupyterlab/statedb": ^4.2.4 "@lumino/coreutils": ^2.1.2 - checksum: 0ca7334bcb09a9738ef3c4a16476f388996e6524d4e4b18c39b7ebec5aad3b6292eb17e3bc3dec73620689f5509f493455eee09d5704addaea78c2a872d6716d + checksum: 9551517b95431dd74e68b1cde2931eb4a4a1edfd21562f8c658ea75c4d3e7c66ecc232e441c8e903639517c3495d2fd367c61418266823491c8e665f5880df1a languageName: node linkType: hard @@ -2250,16 +2250,16 @@ __metadata: languageName: node linkType: hard -"@jupyterlab/ui-components@npm:^4.0.0, @jupyterlab/ui-components@npm:^4.0.0-alpha.33, @jupyterlab/ui-components@npm:^4.0.13, @jupyterlab/ui-components@npm:^4.0.5, @jupyterlab/ui-components@npm:^4.2.3": - version: 4.2.3 - resolution: "@jupyterlab/ui-components@npm:4.2.3" +"@jupyterlab/ui-components@npm:^4.0.0, @jupyterlab/ui-components@npm:^4.0.0-alpha.33, @jupyterlab/ui-components@npm:^4.0.13, @jupyterlab/ui-components@npm:^4.0.5, @jupyterlab/ui-components@npm:^4.2.4": + version: 4.2.4 + resolution: "@jupyterlab/ui-components@npm:4.2.4" dependencies: "@jupyter/react-components": ^0.15.3 "@jupyter/web-components": ^0.15.3 - "@jupyterlab/coreutils": ^6.2.3 - "@jupyterlab/observables": ^5.2.3 - "@jupyterlab/rendermime-interfaces": ^3.10.3 - "@jupyterlab/translation": ^4.2.3 + "@jupyterlab/coreutils": ^6.2.4 + "@jupyterlab/observables": ^5.2.4 + "@jupyterlab/rendermime-interfaces": ^3.10.4 + "@jupyterlab/translation": ^4.2.4 "@lumino/algorithm": ^2.0.1 "@lumino/commands": ^2.3.0 "@lumino/coreutils": ^2.1.2 @@ -2277,20 +2277,20 @@ __metadata: typestyle: ^2.0.4 peerDependencies: react: ^18.2.0 - checksum: 5fc819d633fc8c9774ccd10dc68e3636b06a59089254b2290cfb15b5a04a57133ba43f6e284274c4fbf0e625f688cf49bf7e2a89758e1d98535c51a7efe53216 + checksum: 79282488905776378976516fee64df86be06fdfd838f702048cccc90870ea6b0ac972f24f305416e48deb15470594f31a9b1245ad6b5a6141643397fb94644af languageName: node linkType: hard -"@jupyterlab/workspaces@npm:^4.2.3": - version: 4.2.3 - resolution: "@jupyterlab/workspaces@npm:4.2.3" +"@jupyterlab/workspaces@npm:^4.2.4": + version: 4.2.4 + resolution: "@jupyterlab/workspaces@npm:4.2.4" dependencies: - "@jupyterlab/services": ^7.2.3 + "@jupyterlab/services": ^7.2.4 "@lumino/coreutils": ^2.1.2 "@lumino/disposable": ^2.1.2 "@lumino/polling": ^2.1.2 "@lumino/signaling": ^2.1.2 - checksum: 87aeae18d31d220d45b6d2727155852d0a423b709858ba939d53a69c923b3264802b93aeb238df7266aeb659c34fccbfc0b04a022ab82390c6c4658697b29306 + checksum: 3ca8926ecdeb71361f3c8ad66559f45ba3d665a6507d7db9d460832b1707a1cecf5373f5ef6b5189da28c48aa0348af7a6868e7610ba9e213b49caa3c8cee4a4 languageName: node linkType: hard @@ -3329,8 +3329,8 @@ __metadata: linkType: hard "@rjsf/core@npm:^5.13.4": - version: 5.19.0 - resolution: "@rjsf/core@npm:5.19.0" + version: 5.19.3 + resolution: "@rjsf/core@npm:5.19.3" dependencies: lodash: ^4.17.21 lodash-es: ^4.17.21 @@ -3338,15 +3338,15 @@ __metadata: nanoid: ^3.3.7 prop-types: ^15.8.1 peerDependencies: - "@rjsf/utils": ^5.18.x + "@rjsf/utils": ^5.19.x react: ^16.14.0 || >=17 - checksum: 25978cb8f6ae7d442fbeab6f1edb7d4b04922be12be2510f6a63126ba8ddec1566a900775f6be8f7ecffef26c367c3a543184c34ad6dbd92a2b4560c5748eebd + checksum: ae2516acad16f9c1c9bb81c998067e2143df77e8accb032edd4ca7595ce19c5f481e9c869b842ea04e0c05d4db4ee03c138c2f9cf5858ba9be129d5e99288473 languageName: node linkType: hard "@rjsf/utils@npm:^5.13.4": - version: 5.19.0 - resolution: "@rjsf/utils@npm:5.19.0" + version: 5.19.3 + resolution: "@rjsf/utils@npm:5.19.3" dependencies: json-schema-merge-allof: ^0.8.1 jsonpointer: ^5.0.1 @@ -3355,21 +3355,21 @@ __metadata: react-is: ^18.2.0 peerDependencies: react: ^16.14.0 || >=17 - checksum: 29466ff63e9c3eedde60b930d970b7c6aa0f6482c19be188f86c823ff915ab50ac7bed77f267feb552b7ff1dcc5426fd3324ea4da652b43dd91d98d54477216d + checksum: 498fa72540f6bc12a65cda98a9dc4ebf22ef393b8f97069a82faee0c6317529145a40df713a43e40809560736c47b1e507c7e611d2985c7fe7f2c38fedb489fe languageName: node linkType: hard "@rjsf/validator-ajv8@npm:^5.13.4": - version: 5.19.0 - resolution: "@rjsf/validator-ajv8@npm:5.19.0" + version: 5.19.3 + resolution: "@rjsf/validator-ajv8@npm:5.19.3" dependencies: ajv: ^8.12.0 ajv-formats: ^2.1.1 lodash: ^4.17.21 lodash-es: ^4.17.21 peerDependencies: - "@rjsf/utils": ^5.18.x - checksum: 82289e0e1818c4a7df10131ebaced9b00b5e595d9f6a0cffc847ef7805600a097b697ba696736125d3dafbf79e08bb9848148cd846ae2ddaacb6b7dd26d1daf9 + "@rjsf/utils": ^5.19.x + checksum: c5806f44bdcdb80336d9cdfc4ab73c1480ae487bae0f1e015e3e4755f1e3732ab63594b131fc288ec9d05eb77632f41e62b5cd86a6c1d27bb9cf8bdfb15b889e languageName: node linkType: hard @@ -3529,9 +3529,9 @@ __metadata: linkType: hard "@types/lodash@npm:^4.14.134, @types/lodash@npm:^4.14.168": - version: 4.17.6 - resolution: "@types/lodash@npm:4.17.6" - checksum: f748c672f49c54ee631a0fab6f26d56ab99bd68a4fb91604b5d7525a72102dd1917209c12d7078c988a375edb5dc70ca600db05ac01785306fd64470048cd16c + version: 4.17.7 + resolution: "@types/lodash@npm:4.17.7" + checksum: 09e58a119cd8a70acfb33f8623dc2fc54f74cdce3b3429b879fc2daac4807fe376190a04b9e024dd300f9a3ee1876d6623979cefe619f70654ca0fe0c47679a7 languageName: node linkType: hard @@ -3557,20 +3557,20 @@ __metadata: linkType: hard "@types/node@npm:*": - version: 20.14.9 - resolution: "@types/node@npm:20.14.9" + version: 20.14.11 + resolution: "@types/node@npm:20.14.11" dependencies: undici-types: ~5.26.4 - checksum: 5e9eda1ac8c6cc6bcd1063903ae195eaede9aad1bdad00408a919409cfbcdd2d6535aa3d50346f0d385528f9e03dafc7d1b3bad25aedb1dcd79a6ad39d06c35d + checksum: 24396dea2bc803c2d2ebfdd31a3e6e93818ba1a5933d63cd0f64fad1e2955a8280ba09338a48ffe68cd84748eec8bee27135045f15661aa389656f67fe0b0924 languageName: node linkType: hard "@types/node@npm:^18.15.11": - version: 18.19.39 - resolution: "@types/node@npm:18.19.39" + version: 18.19.41 + resolution: "@types/node@npm:18.19.41" dependencies: undici-types: ~5.26.4 - checksum: d1de755983127b405458c427ae2cf77c89d120a617ca70999086a75fb0b6c6dbc1bdddfe1a8a7374c9ae55ed0589a2bd023ffb3b09ee25440c013afc6502dfe6 + checksum: 377611b2ecd4a7e138ac1bc02fee91a125f0569af7b375cf98d42f0dce28b7967dc2e180ae41f3b0c2ab7d52bbd0891395da110d9620db15826d910bb7e43df0 languageName: node linkType: hard @@ -4185,14 +4185,14 @@ __metadata: linkType: hard "ajv@npm:^8.0.0, ajv@npm:^8.0.1, ajv@npm:^8.12.0, ajv@npm:^8.16.0, ajv@npm:^8.9.0": - version: 8.16.0 - resolution: "ajv@npm:8.16.0" + version: 8.17.1 + resolution: "ajv@npm:8.17.1" dependencies: fast-deep-equal: ^3.1.3 + fast-uri: ^3.0.1 json-schema-traverse: ^1.0.0 require-from-string: ^2.0.2 - uri-js: ^4.4.1 - checksum: bdf3d4c9f1d11e220850051ef4cd89346e951cfb933d6d41be36d45053c1092af1523ee6c62525cce567355caf0a4f4c19a08a93851649c1fa32b4a39b7c4858 + checksum: 1797bf242cfffbaf3b870d13565bd1716b73f214bb7ada9a497063aada210200da36e3ed40237285f3255acc4feeae91b1fb183625331bad27da95973f7253d9 languageName: node linkType: hard @@ -4513,16 +4513,16 @@ __metadata: linkType: hard "browserslist@npm:^4.21.10": - version: 4.23.1 - resolution: "browserslist@npm:4.23.1" + version: 4.23.2 + resolution: "browserslist@npm:4.23.2" dependencies: - caniuse-lite: ^1.0.30001629 - electron-to-chromium: ^1.4.796 + caniuse-lite: ^1.0.30001640 + electron-to-chromium: ^1.4.820 node-releases: ^2.0.14 - update-browserslist-db: ^1.0.16 + update-browserslist-db: ^1.1.0 bin: browserslist: cli.js - checksum: 06189e2d6666a203ce097cc0e713a40477d08420927b79af139211e5712f3cf676fdc4dd6af3aa493d47c09206a344b3420a8315577dbe88c58903132de9b0f5 + checksum: 8212af37f6ca6355da191cf2d4ad49bd0b82854888b9a7e103638fada70d38cbe36d28feeeaa98344cb15d9128f9f74bcc8ce1bfc9011b5fd14381c1c6fb542c languageName: node linkType: hard @@ -4613,8 +4613,8 @@ __metadata: linkType: hard "cacache@npm:^18.0.0": - version: 18.0.3 - resolution: "cacache@npm:18.0.3" + version: 18.0.4 + resolution: "cacache@npm:18.0.4" dependencies: "@npmcli/fs": ^3.1.0 fs-minipass: ^3.0.0 @@ -4628,7 +4628,7 @@ __metadata: ssri: ^10.0.0 tar: ^6.1.11 unique-filename: ^3.0.0 - checksum: b717fd9b36e9c3279bfde4545c3a8f6d5a539b084ee26a9504d48f83694beb724057d26e090b97540f9cc62bea18b9f6cf671c50e18fb7dac60eda9db691714f + checksum: b7422c113b4ec750f33beeca0f426a0024c28e3172f332218f48f963e5b970647fa1ac05679fe5bb448832c51efea9fda4456b9a95c3a1af1105fe6c1833cde2 languageName: node linkType: hard @@ -4703,10 +4703,10 @@ __metadata: languageName: node linkType: hard -"caniuse-lite@npm:^1.0.30001629": - version: 1.0.30001640 - resolution: "caniuse-lite@npm:1.0.30001640" - checksum: ec492d8d1e11d1c55e0f5c0f218229369dc0a4bd1b5d0a579a6435865fe8f4c84bde7e816a844cce1b9cdd97f5a85b6dac5599639fabcdb0c4c5bd039e46cbfd +"caniuse-lite@npm:^1.0.30001640": + version: 1.0.30001642 + resolution: "caniuse-lite@npm:1.0.30001642" + checksum: 23f823ec115306eaf9299521328bb6ad0c4ce65254c375b14fd497ceda759ee8ee5b8763b7b622cb36b6b5fb53c6cb8569785fba842fe289be7dc3fcf008eb4f languageName: node linkType: hard @@ -5680,10 +5680,10 @@ __metadata: languageName: node linkType: hard -"electron-to-chromium@npm:^1.4.796": - version: 1.4.816 - resolution: "electron-to-chromium@npm:1.4.816" - checksum: 5abaa04cee77af4889e68d7fd7305c50b98eaa9b4016b228c85de5713a933767e423e2e6bcd71007fff1c405c5bea79d6e9e9d18efddaa966040fe9e97f43e2e +"electron-to-chromium@npm:^1.4.820": + version: 1.4.830 + resolution: "electron-to-chromium@npm:1.4.830" + checksum: fa9e98baa932a3dc3b24104c346d34459455f8caec9ac8a14630de4399cc05a998e190ddb2eb8b1abcefc08a106246b0fa4b059eae78322441a4c257e3d5455b languageName: node linkType: hard @@ -6131,11 +6131,11 @@ __metadata: linkType: hard "esquery@npm:^1.4.2": - version: 1.5.0 - resolution: "esquery@npm:1.5.0" + version: 1.6.0 + resolution: "esquery@npm:1.6.0" dependencies: estraverse: ^5.1.0 - checksum: aefb0d2596c230118656cd4ec7532d447333a410a48834d80ea648b1e7b5c9bc9ed8b5e33a89cb04e487b60d622f44cf5713bf4abed7c97343edefdc84a35900 + checksum: 08ec4fe446d9ab27186da274d979558557fbdbbd10968fa9758552482720c54152a5640e08b9009e5a30706b66aba510692054d4129d32d0e12e05bbc0b96fb2 languageName: node linkType: hard @@ -6317,6 +6317,13 @@ __metadata: languageName: node linkType: hard +"fast-uri@npm:^3.0.1": + version: 3.0.1 + resolution: "fast-uri@npm:3.0.1" + checksum: 106143ff83705995225dcc559411288f3337e732bb2e264e79788f1914b6bd8f8bc3683102de60b15ba00e6ebb443633cabac77d4ebc5cb228c47cf955e199ff + languageName: node + linkType: hard + "fastest-levenshtein@npm:^1.0.12, fastest-levenshtein@npm:^1.0.16": version: 1.0.16 resolution: "fastest-levenshtein@npm:1.0.16" @@ -6790,8 +6797,8 @@ __metadata: linkType: hard "glob@npm:^10.2.2, glob@npm:^10.3.10": - version: 10.4.2 - resolution: "glob@npm:10.4.2" + version: 10.4.5 + resolution: "glob@npm:10.4.5" dependencies: foreground-child: ^3.1.0 jackspeak: ^3.1.2 @@ -6801,7 +6808,7 @@ __metadata: path-scurry: ^1.11.1 bin: glob: dist/esm/bin.mjs - checksum: bd7c0e30701136e936f414e5f6f82c7f04503f01df77408f177aa584927412f0bde0338e6ec541618cd21eacc57dde33e7b3c6c0a779cc1c6e6a0e14f3d15d9b + checksum: 0bc725de5e4862f9f387fd0f2b274baf16850dcd2714502ccf471ee401803997983e2c05590cb65f9675a3c6f2a58e7a53f9e365704108c6ad3cbf1d60934c4a languageName: node linkType: hard @@ -7467,11 +7474,11 @@ __metadata: linkType: hard "is-core-module@npm:^2.13.0, is-core-module@npm:^2.5.0, is-core-module@npm:^2.8.1": - version: 2.14.0 - resolution: "is-core-module@npm:2.14.0" + version: 2.15.0 + resolution: "is-core-module@npm:2.15.0" dependencies: hasown: ^2.0.2 - checksum: 6bba6c8dc99d88d6f3b2746709d82caddcd9565cafd5870e28ab320720e27e6d9d2bb953ba0839ed4d2ee264bfdd14a9fa1bbc242a916f7dacc8aa95f0322256 + checksum: a9f7a52707c9b59d7164094d183bda892514fc3ba3139f245219c7abe7f6e8d3e2cdcf861f52a891a467f785f1dfa5d549f73b0ee715f4ba56e8882d335ea585 languageName: node linkType: hard @@ -7768,21 +7775,21 @@ __metadata: linkType: hard "jackspeak@npm:^3.1.2": - version: 3.4.0 - resolution: "jackspeak@npm:3.4.0" + version: 3.4.3 + resolution: "jackspeak@npm:3.4.3" dependencies: "@isaacs/cliui": ^8.0.2 "@pkgjs/parseargs": ^0.11.0 dependenciesMeta: "@pkgjs/parseargs": optional: true - checksum: 350f6f311018bb175ffbe736b19c26ac0b134bb5a17a638169e89594eb0c24ab1c658ab3a2fda24ff63b3b19292e1a5ec19d2255bc526df704e8168d392bef85 + checksum: be31027fc72e7cc726206b9f560395604b82e0fddb46c4cbf9f97d049bcef607491a5afc0699612eaa4213ca5be8fd3e1e7cd187b3040988b65c9489838a7c00 languageName: node linkType: hard "jake@npm:^10.8.5": - version: 10.9.1 - resolution: "jake@npm:10.9.1" + version: 10.9.2 + resolution: "jake@npm:10.9.2" dependencies: async: ^3.2.3 chalk: ^4.0.2 @@ -7790,7 +7797,7 @@ __metadata: minimatch: ^3.1.2 bin: jake: bin/cli.js - checksum: 49659c156b8ad921af377fb782505ae3cc7e7dd8793695b782070d99b4b66d2688b4e3efb32e09252400bfe6e49a7fb393a3a0959e8e1a51dbda95bcacbb9c36 + checksum: f2dc4a086b4f58446d02cb9be913c39710d9ea570218d7681bb861f7eeaecab7b458256c946aeaa7e548c5e0686cc293e6435501e4047174a3b6a504dcbfcaae languageName: node linkType: hard @@ -8483,9 +8490,9 @@ __metadata: linkType: hard "lru-cache@npm:^10.0.1, lru-cache@npm:^10.2.0": - version: 10.3.0 - resolution: "lru-cache@npm:10.3.0" - checksum: f2289639bd94cf3c87bfd8a77ac991f9afe3af004ddca3548c3dae63ead1c73bba449a60a4e270992e16cf3261b3d4130943234d52ca3a4d4de2fc074a3cc7b5 + version: 10.4.3 + resolution: "lru-cache@npm:10.4.3" + checksum: 6476138d2125387a6d20f100608c2583d415a4f64a0fecf30c9e2dda976614f09cad4baa0842447bd37dd459a7bd27f57d9d8f8ce558805abd487c583f3d774a languageName: node linkType: hard @@ -9215,8 +9222,8 @@ __metadata: linkType: hard "node-gyp@npm:latest": - version: 10.1.0 - resolution: "node-gyp@npm:10.1.0" + version: 10.2.0 + resolution: "node-gyp@npm:10.2.0" dependencies: env-paths: ^2.2.0 exponential-backoff: ^3.1.1 @@ -9224,13 +9231,13 @@ __metadata: graceful-fs: ^4.2.6 make-fetch-happen: ^13.0.0 nopt: ^7.0.0 - proc-log: ^3.0.0 + proc-log: ^4.1.0 semver: ^7.3.5 - tar: ^6.1.2 + tar: ^6.2.1 which: ^4.0.0 bin: node-gyp: bin/node-gyp.js - checksum: 72e2ab4b23fc32007a763da94018f58069fc0694bf36115d49a2b195c8831e12cf5dd1e7a3718fa85c06969aedf8fc126722d3b672ec1cb27e06ed33caee3c60 + checksum: 0233759d8c19765f7fdc259a35eb046ad86c3d09e22f7384613ae2b89647dd27fcf833fdf5293d9335041e91f9b1c539494225959cdb312a5c8080b7534b926f languageName: node linkType: hard @@ -9242,9 +9249,9 @@ __metadata: linkType: hard "node-releases@npm:^2.0.14": - version: 2.0.14 - resolution: "node-releases@npm:2.0.14" - checksum: 59443a2f77acac854c42d321bf1b43dea0aef55cd544c6a686e9816a697300458d4e82239e2d794ea05f7bbbc8a94500332e2d3ac3f11f52e4b16cbe638b3c41 + version: 2.0.17 + resolution: "node-releases@npm:2.0.17" + checksum: 2fd2969aa75ef6813efaabcec1a3199ef2552e3bba9245d2fc255fefedf819fb1dd3c12767047c1e132c561ad6cc39d954d0da3f6319bb966720bbc1f595058d languageName: node linkType: hard @@ -10124,12 +10131,12 @@ __metadata: linkType: hard "postcss-selector-parser@npm:^6.0.13, postcss-selector-parser@npm:^6.0.2, postcss-selector-parser@npm:^6.0.4": - version: 6.1.0 - resolution: "postcss-selector-parser@npm:6.1.0" + version: 6.1.1 + resolution: "postcss-selector-parser@npm:6.1.1" dependencies: cssesc: ^3.0.0 util-deprecate: ^1.0.2 - checksum: 449f614e6706421be307d8638183c61ba45bc3b460fe3815df8971dbb4d59c4087181940d879daee4a7a2daf3d86e915db1cce0c006dd68ca75b4087079273bd + checksum: 1c6a5adfc3c19c6e1e7d94f8addb89a5166fcca72c41f11713043d381ecbe82ce66360c5524e904e17b54f7fc9e6a077994ff31238a456bc7320c3e02e88d92e languageName: node linkType: hard @@ -10177,11 +10184,11 @@ __metadata: linkType: hard "prettier@npm:^3.0.0": - version: 3.3.2 - resolution: "prettier@npm:3.3.2" + version: 3.3.3 + resolution: "prettier@npm:3.3.3" bin: prettier: bin/prettier.cjs - checksum: 5557d8caed0b182f68123c2e1e370ef105251d1dd75800fadaece3d061daf96b1389141634febf776050f9d732c7ae8fd444ff0b4a61b20535e7610552f32c69 + checksum: bc8604354805acfdde6106852d14b045bb20827ad76a5ffc2455b71a8257f94de93f17f14e463fe844808d2ccc87248364a5691488a3304f1031326e62d9276e languageName: node linkType: hard @@ -10203,7 +10210,7 @@ __metadata: languageName: node linkType: hard -"proc-log@npm:^4.2.0": +"proc-log@npm:^4.1.0, proc-log@npm:^4.2.0": version: 4.2.0 resolution: "proc-log@npm:4.2.0" checksum: 98f6cd012d54b5334144c5255ecb941ee171744f45fca8b43b58ae5a0c1af07352475f481cadd9848e7f0250376ee584f6aa0951a856ff8f021bdfbff4eb33fc @@ -10967,11 +10974,11 @@ __metadata: linkType: hard "semver@npm:^7.0.0, semver@npm:^7.1.1, semver@npm:^7.3.4, semver@npm:^7.3.5, semver@npm:^7.3.7, semver@npm:^7.3.8, semver@npm:^7.5.3, semver@npm:^7.5.4": - version: 7.6.2 - resolution: "semver@npm:7.6.2" + version: 7.6.3 + resolution: "semver@npm:7.6.3" bin: semver: bin/semver.js - checksum: 40f6a95101e8d854357a644da1b8dd9d93ce786d5c6a77227bc69dbb17bea83d0d1d1d7c4cd5920a6df909f48e8bd8a5909869535007f90278289f2451d0292d + checksum: 4110ec5d015c9438f322257b1c51fe30276e5f766a3f64c09edd1d7ea7118ecbc3f379f3b69032bacf13116dc7abc4ad8ce0d7e2bd642e26b0d271b56b61a7d8 languageName: node linkType: hard @@ -11784,7 +11791,7 @@ __metadata: languageName: node linkType: hard -"tar@npm:^6.1.11, tar@npm:^6.1.2": +"tar@npm:^6.1.11, tar@npm:^6.1.2, tar@npm:^6.2.1": version: 6.2.1 resolution: "tar@npm:6.2.1" dependencies: @@ -11828,8 +11835,8 @@ __metadata: linkType: hard "terser@npm:^5.26.0": - version: 5.31.1 - resolution: "terser@npm:5.31.1" + version: 5.31.3 + resolution: "terser@npm:5.31.3" dependencies: "@jridgewell/source-map": ^0.3.3 acorn: ^8.8.2 @@ -11837,7 +11844,7 @@ __metadata: source-map-support: ~0.5.20 bin: terser: bin/terser - checksum: 6ab57e62e9cd690dc99b3d0ee2e07289cd3408109a950c7118bf39e32851a5bf08b67fe19e0ac43a5a98813792ac78101bf25e5aa524f05ae8bb4e0131d0feef + checksum: cb4ccd5cb42c719272959dcae63d41e4696fb304123392943282caa6dfcdc49f94e7c48353af8bcd4fbc34457b240b7f843db7fec21bb2bdc18e01d4f45b035e languageName: node linkType: hard @@ -12233,11 +12240,11 @@ __metadata: linkType: hard "uglify-js@npm:^3.1.4": - version: 3.18.0 - resolution: "uglify-js@npm:3.18.0" + version: 3.19.0 + resolution: "uglify-js@npm:3.19.0" bin: uglifyjs: bin/uglifyjs - checksum: 887733d05d4139a94dffd04a5f07ee7d8be70201c016ea48cb82703778b5c48fadbe6e5e7ac956425522f72e657d3eade23f06ae8a0e2eeed2d684bf6cc25e36 + checksum: 23dc4778a9c5b5252888f3871e34b4a5e69ccc92e0febd9598c82cb559a7d550244ebc3f10eb0af0586c7cc34afe8be99d1581d9fcd36e3bed219d28d0fd3452 languageName: node linkType: hard @@ -12331,7 +12338,7 @@ __metadata: languageName: node linkType: hard -"update-browserslist-db@npm:^1.0.16": +"update-browserslist-db@npm:^1.1.0": version: 1.1.0 resolution: "update-browserslist-db@npm:1.1.0" dependencies: @@ -12345,7 +12352,7 @@ __metadata: languageName: node linkType: hard -"uri-js@npm:^4.2.2, uri-js@npm:^4.4.1": +"uri-js@npm:^4.2.2": version: 4.4.1 resolution: "uri-js@npm:4.4.1" dependencies: @@ -12641,8 +12648,8 @@ __metadata: linkType: hard "webpack@npm:^5.76.1, webpack@npm:^5.76.3, webpack@npm:^5.77.0": - version: 5.92.1 - resolution: "webpack@npm:5.92.1" + version: 5.93.0 + resolution: "webpack@npm:5.93.0" dependencies: "@types/eslint-scope": ^3.7.3 "@types/estree": ^1.0.5 @@ -12673,7 +12680,7 @@ __metadata: optional: true bin: webpack: bin/webpack.js - checksum: 11bec781260c4180883e98a4a15a08df297aca654ded45e70598f688881dd722f992d680addafe6f6342debede345cddcce2b781c50f5cde29d6c0bc33a82452 + checksum: c93bd73d9e1ab49b07e139582187f1c3760ee2cf0163b6288fab2ae210e39e59240a26284e7e5d29bec851255ef4b43c51642c882fa5a94e16ce7cb906deeb47 languageName: node linkType: hard