diff --git a/.cspell/mermaid-terms.txt b/.cspell/mermaid-terms.txt
index 46ad6dddb..59a3d108f 100644
--- a/.cspell/mermaid-terms.txt
+++ b/.cspell/mermaid-terms.txt
@@ -1,5 +1,6 @@
Adamiecki
arrowend
+Bendpoints
bmatrix
braintree
catmull
diff --git a/.cspell/misc-terms.txt b/.cspell/misc-terms.txt
index 3fc094309..1820e3c86 100644
--- a/.cspell/misc-terms.txt
+++ b/.cspell/misc-terms.txt
@@ -4,3 +4,4 @@ handDrawn
KOEPF
neato
newbranch
+validify
diff --git a/cypress/platform/knsv2.html b/cypress/platform/knsv2.html
index 8808a3c9d..a3cbf60bf 100644
--- a/cypress/platform/knsv2.html
+++ b/cypress/platform/knsv2.html
@@ -73,7 +73,9 @@
font-family: monospace;
font-size: 72px;
}
-
+ pre {
+ width: 100%;
+ }
/* tspan {
font-size: 6px !important;
} */
@@ -88,17 +90,202 @@
config:
look: handDrawn
layout: elk
+ elk:
+
+
+---
+stateDiagram-v2
+ direction LR
+ accTitle: An idealized Open Source supply-chain graph
+
+ %%
+ state "š¦ Importer" as author_importer
+ state "š„ Supplier, Owner" as author_owner
+ state "šØš„ Maintainer, Author\nšØ Custodian" as author
+ state "š© Distributor" as repository_distributor
+ state "š¦ Importer" as language_importer
+ state "š¦šØ Packager" as language_packager
+ state "š¦šØ OSS Steward" as language_steward
+ state "šØ Curator" as language_curator
+ state "š© Distributor" as language_distributor
+ state "š¦ Contributor" as contributor
+ state "š¦ Importer" as package_importer
+ state "šØ Patcher" as package_patcher
+ state "šØš¦ Builder\nšØš¦ Packager\nšØš¦ Containerizer" as package_packager
+ state "šØ Curator" as package_curator
+ state "š© Distributor" as package_distributor
+ state "š¦ Importer" as integrator_importer
+ state "š„ Supplier, Manufacturer, Owner" as integrator_owner
+ state "š¦šØš„ Integrator, Developer" as integrator_developer
+ state "š©šØ SBOM Redactor\nš© Publisher" as integrator_publisher
+ state "š¦šØ Builder" as integrator_builder
+ state "šØ Deployer" as deployer
+ state "š¦ Vuln. Checker" as integrator_checker
+ state "š©šØ SBOM Redactor" as redactor
+ state "š¦ Consumer\nš¦ User" as consumer
+ state "š¦ Auditor" as auditor_internal
+ state "š¦ Auditor" as auditor_external
+
+ %%
+ classDef createsSBOM stroke:red,stroke-width:3px;
+ classDef updatesSBOM stroke:yellow,stroke-width:3px;
+ classDef assemblesSBOM stroke:yellow,stroke-width:3px;
+ classDef distributesSBOM stroke:green,stroke-width:3px;
+ classDef verifiesSBOM stroke:#07f,stroke-width:3px;
+
+ %%
+ class author_importer verifiesSBOM
+ class author_owner createsSBOM
+ class manufacturer_owner createsSBOM
+ class author assemblesSBOM
+ class package_importer verifiesSBOM
+ class package_patcher updatesSBOM
+ class package_packager assemblesSBOM
+ class package_curator distributesSBOM
+ class package_distributor distributesSBOM
+ class language_importer verifiesSBOM
+ class language_packager assemblesSBOM
+ class language_steward updatesSBOM
+ class language_curator distributesSBOM
+ class language_distributor distributesSBOM
+ class repository_distributor distributesSBOM
+ class integrator_importer verifiesSBOM
+ class integrator_owner createsSBOM
+ class integrator_developer assemblesSBOM
+ class integrator_publisher distributesSBOM
+ class integrator_builder assemblesSBOM
+ class integrator_checker verifiesSBOM
+ class deployer assemblesSBOM
+ class redactor distributesSBOM
+ class auditor_internal verifiesSBOM
+ class auditor_external verifiesSBOM
+
+ state "Maintainer Environment" as environment_maintainer {
+ [*] --> author_importer
+ [*] --> author
+ author_importer --> author
+ author_owner --> author
+ author --> language_packager
+ }
+
+ [*] --> environment_maintainer
+
+ state "Language Ecosystem" as ecosystem_lang {
+ [*] --> language_importer
+ [*] --> language_steward
+ [*] --> language_curator
+ [*] --> language_distributor
+ language_importer --> language_distributor
+ language_importer --> language_curator
+ language_steward --> language_curator
+ language_curator --> language_distributor
+ }
+
+ language_packager --> ecosystem_lang
+ ecosystem_lang --> ecosystem_lang
+
+ state "Public Collaboration Ecosystem" as ecosystem_repo {
+ [*] --> repository_distributor
+ }
+
+ author --> ecosystem_repo
+ ecosystem_repo --> author
+
+ repository_distributor --> contributor
+ contributor --> repository_distributor
+
+ state "Package Ecosystem" as ecosystem_package {
+ [*] --> package_importer
+ [*] --> package_packager
+ [*] --> package_patcher
+ package_importer --> package_patcher
+ package_importer --> package_packager
+ package_patcher --> package_packager
+ package_packager --> package_curator
+ package_packager --> package_distributor
+ package_curator --> package_distributor
+ }
+
+ repository_distributor --> ecosystem_package
+ language_distributor --> ecosystem_package
+ ecosystem_package --> ecosystem_package
+
+ state "Integrator Environment" as environment_integrator {
+ [*] --> integrator_developer
+ [*] --> integrator_importer
+ integrator_importer --> integrator_developer
+ integrator_owner --> integrator_developer
+ integrator_builder --> integrator_publisher
+ integrator_developer --> integrator_checker
+ integrator_checker --> integrator_developer
+ auditor_internal --> integrator_developer
+ integrator_developer --> integrator_builder
+ integrator_developer --> auditor_internal
+ }
+
+ repository_distributor --> environment_integrator
+ language_distributor --> environment_integrator
+ package_distributor --> environment_integrator
+
+ state "Production Environment" as environment_prod {
+ [*] --> deployer
+ deployer --> redactor
+ }
+
+ integrator_publisher --> [*]
+ integrator_developer --> environment_prod
+ integrator_builder --> environment_prod
+ integrator_publisher --> environment_prod
+
+ deployer --> auditor_external
+ deployer --> consumer
+ redactor --> consumer
+
+
+
+
+
+---
+ title: hello2
+ config:
+ look: handDrawn
+ layout: dagre
elk:
nodePlacementStrategy: BRANDES_KOEPF
---
-flowchart LR
- A[Start] --Some text--> B(Continue)
- B --> C{Evaluate}
- C -- One --> D[Option 1]
- C -- Two --> E[Option 2]
- C -- Three --> F[fa:fa-car Option 3]
+stateDiagram-v2
+ A --> A
+ state A {
+ B --> D
+ state B {
+ C
+ }
+ state D {
+ E
+ }
+ }
+
+
+---
+ title: hello2
+ config:
+ look: handDrawn
+ layout: dagre
+ elk:
+ nodePlacementStrategy: BRANDES_KOEPF
+---
+flowchart
+ A --> A
+ subgraph A
+ B --> B
+ subgraph B
+ C
+ end
+ end
+
@@ -195,7 +382,7 @@ flowchart LR
messageFontFamily: 'courier',
},
fontSize: 12,
- logLevel: 0,
+ logLevel: 3,
securityLevel: 'loose',
});
function callback() {
diff --git a/docs/config/setup/interfaces/mermaid.MermaidConfig.md b/docs/config/setup/interfaces/mermaid.MermaidConfig.md
index ca7828f52..846918ef4 100644
--- a/docs/config/setup/interfaces/mermaid.MermaidConfig.md
+++ b/docs/config/setup/interfaces/mermaid.MermaidConfig.md
@@ -16,7 +16,7 @@
#### Defined in
-[packages/mermaid/src/config.type.ts:112](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L112)
+[packages/mermaid/src/config.type.ts:122](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L122)
---
@@ -29,7 +29,7 @@ This matters if you are using base tag settings.
#### Defined in
-[packages/mermaid/src/config.type.ts:131](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L131)
+[packages/mermaid/src/config.type.ts:141](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L141)
---
@@ -39,7 +39,7 @@ This matters if you are using base tag settings.
#### Defined in
-[packages/mermaid/src/config.type.ts:189](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L189)
+[packages/mermaid/src/config.type.ts:199](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L199)
---
@@ -49,7 +49,7 @@ This matters if you are using base tag settings.
#### Defined in
-[packages/mermaid/src/config.type.ts:186](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L186)
+[packages/mermaid/src/config.type.ts:196](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L196)
---
@@ -59,7 +59,7 @@ This matters if you are using base tag settings.
#### Defined in
-[packages/mermaid/src/config.type.ts:177](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L177)
+[packages/mermaid/src/config.type.ts:187](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L187)
---
@@ -69,7 +69,7 @@ This matters if you are using base tag settings.
#### Defined in
-[packages/mermaid/src/config.type.ts:103](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L103)
+[packages/mermaid/src/config.type.ts:113](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L113)
---
@@ -83,7 +83,7 @@ You can set this attribute to base the seed on a static string.
#### Defined in
-[packages/mermaid/src/config.type.ts:171](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L171)
+[packages/mermaid/src/config.type.ts:181](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L181)
---
@@ -101,7 +101,7 @@ should not change unless content is changed.
#### Defined in
-[packages/mermaid/src/config.type.ts:164](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L164)
+[packages/mermaid/src/config.type.ts:174](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L174)
---
@@ -111,7 +111,7 @@ should not change unless content is changed.
#### Defined in
-[packages/mermaid/src/config.type.ts:190](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L190)
+[packages/mermaid/src/config.type.ts:200](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L200)
---
@@ -121,10 +121,11 @@ should not change unless content is changed.
#### Type declaration
-| Name | Type | Description |
-| :----------------------- | :---------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `mergeEdges?` | `boolean` | Elk specific option that allows edges to share path where it convenient. It can make for pretty diagrams but can also make it harder to read the diagram. |
-| `nodePlacementStrategy?` | `"SIMPLE"` \| `"NETWORK_SIMPLEX"` \| `"LINEAR_SEGMENTS"` \| `"BRANDES_KOEPF"` | Elk specific option affecting how nodes are placed. |
+| Name | Type | Description |
+| :----------------------- | :-------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `cycleBreakingStrategy?` | `"GREEDY"` \| `"DEPTH_FIRST"` \| `"INTERACTIVE"` \| `"MODEL_ORDER"` \| `"GREEDY_MODEL_ORDER"` | This strategy decides how to find cycles in the graph and deciding which edges need adjustment to break loops. |
+| `mergeEdges?` | `boolean` | Elk specific option that allows edges to share path where it convenient. It can make for pretty diagrams but can also make it harder to read the diagram. |
+| `nodePlacementStrategy?` | `"SIMPLE"` \| `"NETWORK_SIMPLEX"` \| `"LINEAR_SEGMENTS"` \| `"BRANDES_KOEPF"` | Elk specific option affecting how nodes are placed. |
#### Defined in
@@ -138,7 +139,7 @@ should not change unless content is changed.
#### Defined in
-[packages/mermaid/src/config.type.ts:179](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L179)
+[packages/mermaid/src/config.type.ts:189](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L189)
---
@@ -148,7 +149,7 @@ should not change unless content is changed.
#### Defined in
-[packages/mermaid/src/config.type.ts:172](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L172)
+[packages/mermaid/src/config.type.ts:182](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L182)
---
@@ -162,7 +163,7 @@ See
#### Defined in
-[packages/mermaid/src/config.type.ts:111](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L111)
+[packages/mermaid/src/config.type.ts:121](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L121)
---
@@ -172,7 +173,7 @@ See
#### Defined in
-[packages/mermaid/src/config.type.ts:192](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L192)
+[packages/mermaid/src/config.type.ts:202](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L202)
---
@@ -186,7 +187,7 @@ If set to true, ignores legacyMathML.
#### Defined in
-[packages/mermaid/src/config.type.ts:153](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L153)
+[packages/mermaid/src/config.type.ts:163](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L163)
---
@@ -196,7 +197,7 @@ If set to true, ignores legacyMathML.
#### Defined in
-[packages/mermaid/src/config.type.ts:174](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L174)
+[packages/mermaid/src/config.type.ts:184](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L184)
---
@@ -206,7 +207,7 @@ If set to true, ignores legacyMathML.
#### Defined in
-[packages/mermaid/src/config.type.ts:185](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L185)
+[packages/mermaid/src/config.type.ts:195](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L195)
---
@@ -228,7 +229,7 @@ Defines the seed to be used when using handDrawn look. This is important for the
#### Defined in
-[packages/mermaid/src/config.type.ts:104](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L104)
+[packages/mermaid/src/config.type.ts:114](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L114)
---
@@ -238,7 +239,7 @@ Defines the seed to be used when using handDrawn look. This is important for the
#### Defined in
-[packages/mermaid/src/config.type.ts:175](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L175)
+[packages/mermaid/src/config.type.ts:185](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L185)
---
@@ -265,7 +266,7 @@ fall back to legacy rendering for KaTeX.
#### Defined in
-[packages/mermaid/src/config.type.ts:146](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L146)
+[packages/mermaid/src/config.type.ts:156](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L156)
---
@@ -277,7 +278,7 @@ This option decides the amount of logging to be used by mermaid.
#### Defined in
-[packages/mermaid/src/config.type.ts:117](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L117)
+[packages/mermaid/src/config.type.ts:127](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L127)
---
@@ -299,7 +300,7 @@ Defines which main look to use for the diagram.
#### Defined in
-[packages/mermaid/src/config.type.ts:193](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L193)
+[packages/mermaid/src/config.type.ts:203](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L203)
---
@@ -333,7 +334,7 @@ The maximum allowed size of the users text diagram
#### Defined in
-[packages/mermaid/src/config.type.ts:184](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L184)
+[packages/mermaid/src/config.type.ts:194](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L194)
---
@@ -343,7 +344,7 @@ The maximum allowed size of the users text diagram
#### Defined in
-[packages/mermaid/src/config.type.ts:188](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L188)
+[packages/mermaid/src/config.type.ts:198](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L198)
---
@@ -353,7 +354,7 @@ The maximum allowed size of the users text diagram
#### Defined in
-[packages/mermaid/src/config.type.ts:180](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L180)
+[packages/mermaid/src/config.type.ts:190](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L190)
---
@@ -363,7 +364,7 @@ The maximum allowed size of the users text diagram
#### Defined in
-[packages/mermaid/src/config.type.ts:181](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L181)
+[packages/mermaid/src/config.type.ts:191](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L191)
---
@@ -373,7 +374,7 @@ The maximum allowed size of the users text diagram
#### Defined in
-[packages/mermaid/src/config.type.ts:183](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L183)
+[packages/mermaid/src/config.type.ts:193](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L193)
---
@@ -383,7 +384,7 @@ The maximum allowed size of the users text diagram
#### Defined in
-[packages/mermaid/src/config.type.ts:187](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L187)
+[packages/mermaid/src/config.type.ts:197](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L197)
---
@@ -397,7 +398,7 @@ This prevents malicious graph directives from overriding a site's default securi
#### Defined in
-[packages/mermaid/src/config.type.ts:138](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L138)
+[packages/mermaid/src/config.type.ts:148](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L148)
---
@@ -409,7 +410,7 @@ Level of trust for parsed diagram
#### Defined in
-[packages/mermaid/src/config.type.ts:121](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L121)
+[packages/mermaid/src/config.type.ts:131](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L131)
---
@@ -419,7 +420,7 @@ Level of trust for parsed diagram
#### Defined in
-[packages/mermaid/src/config.type.ts:173](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L173)
+[packages/mermaid/src/config.type.ts:183](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L183)
---
@@ -431,7 +432,7 @@ Dictates whether mermaid starts on Page load
#### Defined in
-[packages/mermaid/src/config.type.ts:125](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L125)
+[packages/mermaid/src/config.type.ts:135](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L135)
---
@@ -441,7 +442,7 @@ Dictates whether mermaid starts on Page load
#### Defined in
-[packages/mermaid/src/config.type.ts:178](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L178)
+[packages/mermaid/src/config.type.ts:188](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L188)
---
@@ -454,7 +455,7 @@ This is useful when you want to control how to handle syntax errors in your appl
#### Defined in
-[packages/mermaid/src/config.type.ts:199](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L199)
+[packages/mermaid/src/config.type.ts:209](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L209)
---
@@ -497,7 +498,7 @@ You may also use `themeCSS` to override this value.
#### Defined in
-[packages/mermaid/src/config.type.ts:176](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L176)
+[packages/mermaid/src/config.type.ts:186](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L186)
---
@@ -507,7 +508,7 @@ You may also use `themeCSS` to override this value.
#### Defined in
-[packages/mermaid/src/config.type.ts:191](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L191)
+[packages/mermaid/src/config.type.ts:201](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L201)
---
@@ -517,4 +518,4 @@ You may also use `themeCSS` to override this value.
#### Defined in
-[packages/mermaid/src/config.type.ts:182](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L182)
+[packages/mermaid/src/config.type.ts:192](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/config.type.ts#L192)
diff --git a/packages/mermaid-layout-elk/src/render.ts b/packages/mermaid-layout-elk/src/render.ts
index 117ca6276..7ac43bb7f 100644
--- a/packages/mermaid-layout-elk/src/render.ts
+++ b/packages/mermaid-layout-elk/src/render.ts
@@ -752,14 +752,34 @@ export const render = async (
'nodePlacement.strategy': data4Layout.config.elk.nodePlacementStrategy,
'elk.layered.mergeEdges': data4Layout.config.elk.mergeEdges,
'elk.direction': 'DOWN',
- 'spacing.baseValue': 30,
- // 'spacing.nodeNode': 40,
- // 'spacing.nodeNodeBetweenLayers': 45,
- // 'spacing.edgeNode': 40,
- // 'spacing.edgeNodeBetweenLayers': 30,
- // 'spacing.edgeEdge': 30,
- // 'spacing.edgeEdgeBetweenLayers': 40,
- // 'spacing.nodeSelfLoop': 50,
+ 'spacing.baseValue': 35,
+ 'elk.layered.unnecessaryBendpoints': true,
+ 'elk.layered.cycleBreaking.strategy': data4Layout.config.elk.cycleBreakingStrategy,
+ // 'spacing.nodeNode': 20,
+ // 'spacing.nodeNodeBetweenLayers': 25,
+ // 'spacing.edgeNode': 20,
+ // 'spacing.edgeNodeBetweenLayers': 10,
+ // 'spacing.edgeEdge': 10,
+ // 'spacing.edgeEdgeBetweenLayers': 20,
+ // 'spacing.nodeSelfLoop': 20,
+
+ // Tweaking options
+ // 'elk.layered.nodePlacement.favorStraightEdges': true,
+ // 'nodePlacement.feedbackEdges': true,
+ // 'elk.layered.wrapping.multiEdge.improveCuts': true,
+ // 'elk.layered.wrapping.multiEdge.improveWrappedEdges': true,
+ // 'elk.layered.wrapping.strategy': 'MULTI_EDGE',
+ // 'elk.layered.edgeRouting.selfLoopDistribution': 'EQUALLY',
+ // 'elk.layered.mergeHierarchyEdges': true,
+ // 'elk.layered.feedbackEdges': true,
+ // 'elk.layered.crossingMinimization.semiInteractive': true,
+ // 'elk.layered.edgeRouting.splines.sloppy.layerSpacingFactor': 1,
+ // 'elk.layered.edgeRouting.polyline.slopedEdgeZoneWidth': 4.0,
+ // 'elk.layered.wrapping.validify.strategy': 'LOOK_BACK',
+ // 'elk.insideSelfLoops.activate': true,
+ // 'elk.alg.layered.options.EdgeStraighteningStrategy': 'NONE',
+ // 'elk.layered.considerModelOrder.strategy': 'NODES_AND_EDGES', // NODES_AND_EDGES
+ // 'elk.layered.wrapping.cutting.strategy': 'ARD', // NODES_AND_EDGES
},
children: [],
edges: [],
diff --git a/packages/mermaid/src/config.type.ts b/packages/mermaid/src/config.type.ts
index 972f85bc4..0236de3ae 100644
--- a/packages/mermaid/src/config.type.ts
+++ b/packages/mermaid/src/config.type.ts
@@ -99,6 +99,16 @@ export interface MermaidConfig {
*
*/
nodePlacementStrategy?: 'SIMPLE' | 'NETWORK_SIMPLEX' | 'LINEAR_SEGMENTS' | 'BRANDES_KOEPF';
+ /**
+ * This strategy decides how to find cycles in the graph and deciding which edges need adjustment to break loops.
+ *
+ */
+ cycleBreakingStrategy?:
+ | 'GREEDY'
+ | 'DEPTH_FIRST'
+ | 'INTERACTIVE'
+ | 'MODEL_ORDER'
+ | 'GREEDY_MODEL_ORDER';
};
darkMode?: boolean;
htmlLabels?: boolean;
diff --git a/packages/mermaid/src/rendering-util/layout-algorithms/dagre/index.js b/packages/mermaid/src/rendering-util/layout-algorithms/dagre/index.js
index 2717eb717..c9c1926da 100644
--- a/packages/mermaid/src/rendering-util/layout-algorithms/dagre/index.js
+++ b/packages/mermaid/src/rendering-util/layout-algorithms/dagre/index.js
@@ -28,7 +28,7 @@ import { getSubGraphTitleMargins } from '../../../utils/subGraphTitleMargins.js'
import { getConfig } from '../../../diagram-api/diagramAPI.js';
const recursiveRender = async (_elem, graph, diagramType, id, parentCluster, siteConfig) => {
- log.info('Graph in recursive render: XXX', graphlibJson.write(graph), parentCluster);
+ log.warn('Graph in recursive render:XAX', graphlibJson.write(graph), parentCluster);
const dir = graph.graph().rankdir;
log.trace('Dir in recursive render - dir:', dir);
@@ -124,7 +124,7 @@ const recursiveRender = async (_elem, graph, diagramType, id, parentCluster, sit
clusterDb.set(node.id, { id: findNonClusterChild(node.id, graph), node });
// insertCluster(clusters, graph.node(v));
} else {
- log.trace('Node - the non recursive path XAX', v, node.id, node);
+ log.warn('Node - the non recursive path XAX', v, nodes, graph.node(v), dir);
await insertNode(nodes, graph.node(v), dir);
}
}
@@ -305,12 +305,64 @@ export const render = async (data4Layout, svg) => {
log.debug('Edges:', data4Layout.edges);
data4Layout.edges.forEach((edge) => {
- graph.setEdge(edge.start, edge.end, { ...edge }, edge.id);
+ // Handle self-loops
+ if (edge.start === edge.end) {
+ const nodeId = edge.start;
+ const specialId1 = nodeId + '---' + nodeId + '---1';
+ const specialId2 = nodeId + '---' + nodeId + '---2';
+ const node = graph.node(nodeId);
+ graph.setNode(specialId1, {
+ domId: specialId1,
+ id: specialId1,
+ parentId: node.parentId,
+ labelStyle: '',
+ label: '',
+ padding: 0,
+ shape: 'labelRect',
+ // shape: 'rect',
+ style: '',
+ width: 10,
+ height: 10,
+ });
+ graph.setParent(specialId1, node.parentId);
+ graph.setNode(specialId2, {
+ domId: specialId2,
+ id: specialId2,
+ parentId: node.parentId,
+ labelStyle: '',
+ padding: 0,
+ // shape: 'rect',
+ shape: 'labelRect',
+ label: '',
+ style: '',
+ width: 10,
+ height: 10,
+ });
+ graph.setParent(specialId2, node.parentId);
+
+ const edge1 = structuredClone(edge);
+ const edgeMid = structuredClone(edge);
+ const edge2 = structuredClone(edge);
+ edge1.label = '';
+ edge1.arrowTypeEnd = 'none';
+ edge1.id = nodeId + '-cyclic-special-1';
+ edgeMid.arrowTypeEnd = 'none';
+ edgeMid.id = nodeId + '-cyclic-special-mid';
+ edge2.label = '';
+ edge1.fromCluster = nodeId;
+ edge2.toCluster = nodeId;
+ edge2.id = nodeId + '-cyclic-special-2';
+ graph.setEdge(nodeId, specialId1, edge1, nodeId + '-cyclic-special-0');
+ graph.setEdge(specialId1, specialId2, edgeMid, nodeId + '-cyclic-special-1');
+ graph.setEdge(specialId2, nodeId, edge2, nodeId + '-cyc {
' --- ',
clusterDb.get(e.w)
);
- if (clusterDb.get(e.v) && clusterDb.get(e.w) && clusterDb.get(e.v) === clusterDb.get(e.w)) {
- log.warn('Fixing and trying link to self - removing XXX', e.v, e.w, e.name);
- log.warn('Fixing and trying - removing XXX', e.v, e.w, e.name);
- v = getAnchorId(e.v);
- w = getAnchorId(e.w);
- graph.removeEdge(e.v, e.w, e.name);
- const specialId1 = e.w + '---' + e.v + '---1';
- const specialId2 = e.w + '---' + e.v + '---2';
- graph.setNode(specialId1, {
- domId: specialId1,
- id: specialId1,
- labelStyle: '',
- label: '',
- padding: 0,
- shape: 'labelRect',
- style: '',
- width: 10,
- height: 10,
- });
- graph.setNode(specialId2, {
- domId: specialId2,
- id: specialId2,
- labelStyle: '',
- padding: 0,
- shape: 'labelRect',
- style: '',
- width: 10,
- height: 10,
- });
- const edge1 = structuredClone(edge);
- const edgeMid = structuredClone(edge);
- const edge2 = structuredClone(edge);
- edge1.label = '';
- edge1.arrowTypeEnd = 'none';
- edge1.id = e.name + '-cyclic-special-1';
- edgeMid.arrowTypeEnd = 'none';
- edgeMid.id = e.name + '-cyclic-special-mid';
- edge2.label = '';
- edge1.fromCluster = e.v;
- edge2.toCluster = e.v;
- edge2.id = e.name + '-cyclic-special-2';
- graph.setEdge(v, specialId1, edge1, e.name + '-cyclic-special-0');
- graph.setEdge(specialId1, specialId2, edgeMid, e.name + '-cyclic-special-1');
- graph.setEdge(specialId2, w, edge2, e.name + '-cyclic-special-2');
- } else if (clusterDb.get(e.v) || clusterDb.get(e.w)) {
+ if (clusterDb.get(e.v) || clusterDb.get(e.w)) {
log.warn('Fixing and trying - removing XXX', e.v, e.w, e.name);
v = getAnchorId(e.v);
w = getAnchorId(e.w);
@@ -334,13 +290,6 @@ export const adjustClustersAndEdges = (graph, depth) => {
extractor(graph, 0);
log.trace(clusterDb);
-
- // Remove references to extracted cluster
- // graph.edges().forEach((edge) => {
- // if (isDescendant(edge.v, clusterId) || isDescendant(edge.w, clusterId)) {
- // graph.removeEdge(edge);
- // }
- // });
};
export const extractor = (graph, depth) => {
@@ -441,7 +390,7 @@ export const extractor = (graph, depth) => {
for (const node of nodes) {
const data = graph.node(node);
log.warn(' Now next level', node, data);
- if (data.clusterNode) {
+ if (data?.clusterNode) {
extractor(data.graph, depth + 1);
}
}
diff --git a/packages/mermaid/src/schemas/config.schema.yaml b/packages/mermaid/src/schemas/config.schema.yaml
index 11c294ed9..0d2b610ae 100644
--- a/packages/mermaid/src/schemas/config.schema.yaml
+++ b/packages/mermaid/src/schemas/config.schema.yaml
@@ -119,6 +119,17 @@ properties:
- LINEAR_SEGMENTS
- BRANDES_KOEPF
default: BRANDES_KOEPF
+ cycleBreakingStrategy:
+ description: |
+ This strategy decides how to find cycles in the graph and deciding which edges need adjustment to break loops.
+ type: string
+ enum:
+ - GREEDY
+ - DEPTH_FIRST
+ - INTERACTIVE
+ - MODEL_ORDER
+ - GREEDY_MODEL_ORDER
+ default: GREEDY_MODEL_ORDER
darkMode:
type: boolean
default: false
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 554af5eeb..5ed0e6c23 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -10,10 +10,10 @@ importers:
devDependencies:
'@applitools/eyes-cypress':
specifier: ^3.44.4
- version: 3.44.6(encoding@0.1.13)(typescript@5.4.5)
+ version: 3.44.7(encoding@0.1.13)(typescript@5.4.5)
'@argos-ci/cypress':
specifier: ^2.1.0
- version: 2.1.1(cypress@13.13.2)
+ version: 2.1.2(cypress@13.13.3)
'@changesets/changelog-github':
specifier: ^0.5.0
version: 0.5.0(encoding@0.1.13)
@@ -25,7 +25,7 @@ importers:
version: 8.13.3(eslint@9.8.0)
'@cypress/code-coverage':
specifier: ^3.12.30
- version: 3.12.44(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(babel-loader@9.1.3(@babel/core@7.25.2)(webpack@5.93.0(esbuild@0.21.5)))(cypress@13.13.2)(webpack@5.93.0(esbuild@0.21.5))
+ version: 3.12.45(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(babel-loader@9.1.3(@babel/core@7.25.2)(webpack@5.93.0(esbuild@0.21.5)))(cypress@13.13.3)(webpack@5.93.0(esbuild@0.21.5))
'@eslint/js':
specifier: ^9.4.0
version: 9.8.0
@@ -52,13 +52,13 @@ importers:
version: 4.0.4
'@types/node':
specifier: ^20.11.30
- version: 20.14.14
+ version: 20.14.15
'@types/rollup-plugin-visualizer':
specifier: ^4.2.4
version: 4.2.4
'@vitest/coverage-v8':
specifier: ^1.4.0
- version: 1.6.0(vitest@1.6.0(@types/node@20.14.14)(@vitest/ui@1.6.0)(jsdom@24.1.1)(terser@5.31.6))
+ version: 1.6.0(vitest@1.6.0(@types/node@20.14.15)(@vitest/ui@1.6.0)(jsdom@24.1.3)(terser@5.31.6))
'@vitest/spy':
specifier: ^1.4.0
version: 1.6.0
@@ -85,13 +85,13 @@ importers:
version: 7.0.3
cspell:
specifier: ^8.6.0
- version: 8.13.1
+ version: 8.13.3
cypress:
specifier: ^13.11.0
- version: 13.13.2
+ version: 13.13.3
cypress-image-snapshot:
specifier: ^4.0.1
- version: 4.0.1(cypress@13.13.2)(jest@29.7.0(@types/node@20.14.14))
+ version: 4.0.1(cypress@13.13.3)(jest@29.7.0(@types/node@20.14.15))
esbuild:
specifier: ^0.21.5
version: 0.21.5
@@ -109,7 +109,7 @@ importers:
version: 8.1.1
eslint-plugin-jest:
specifier: ^28.6.0
- version: 28.7.0(@typescript-eslint/eslint-plugin@8.0.1(@typescript-eslint/parser@8.0.1(eslint@9.8.0)(typescript@5.4.5))(eslint@9.8.0)(typescript@5.4.5))(eslint@9.8.0)(jest@29.7.0(@types/node@20.14.14))(typescript@5.4.5)
+ version: 28.7.0(@typescript-eslint/eslint-plugin@8.0.1(@typescript-eslint/parser@8.0.1(eslint@9.8.0)(typescript@5.4.5))(eslint@9.8.0)(typescript@5.4.5))(eslint@9.8.0)(jest@29.7.0(@types/node@20.14.15))(typescript@5.4.5)
eslint-plugin-jsdoc:
specifier: ^48.2.9
version: 48.11.0(eslint@9.8.0)
@@ -142,10 +142,10 @@ importers:
version: 14.0.2
husky:
specifier: ^9.0.11
- version: 9.1.4
+ version: 9.1.5
jest:
specifier: ^29.7.0
- version: 29.7.0(@types/node@20.14.14)
+ version: 29.7.0(@types/node@20.14.15)
jison:
specifier: ^0.4.18
version: 0.4.18
@@ -154,13 +154,13 @@ importers:
version: 4.1.0
jsdom:
specifier: ^24.0.0
- version: 24.1.1
+ version: 24.1.3
langium-cli:
specifier: 3.0.3
version: 3.0.3
lint-staged:
specifier: ^15.2.2
- version: 15.2.8
+ version: 15.2.9
markdown-table:
specifier: ^3.0.3
version: 3.0.3
@@ -199,13 +199,13 @@ importers:
version: 8.0.1(eslint@9.8.0)(typescript@5.4.5)
vite:
specifier: ^5.2.3
- version: 5.3.5(@types/node@20.14.14)(terser@5.31.6)
+ version: 5.3.5(@types/node@20.14.15)(terser@5.31.6)
vite-plugin-istanbul:
specifier: ^6.0.0
- version: 6.0.2(vite@5.3.5(@types/node@20.14.14)(terser@5.31.6))
+ version: 6.0.2(vite@5.3.5(@types/node@20.14.15)(terser@5.31.6))
vitest:
specifier: ^1.4.0
- version: 1.6.0(@types/node@20.14.14)(@vitest/ui@1.6.0)(jsdom@24.1.1)(terser@5.31.6)
+ version: 1.6.0(@types/node@20.14.15)(@vitest/ui@1.6.0)(jsdom@24.1.3)(terser@5.31.6)
packages/mermaid:
dependencies:
@@ -217,10 +217,10 @@ importers:
version: link:../parser
cytoscape:
specifier: ^3.29.2
- version: 3.30.1
+ version: 3.30.2
cytoscape-cose-bilkent:
specifier: ^4.1.0
- version: 4.1.0(cytoscape@3.30.1)
+ version: 4.1.0(cytoscape@3.30.2)
d3:
specifier: ^7.9.0
version: 7.9.0
@@ -232,7 +232,7 @@ importers:
version: 7.0.10
dayjs:
specifier: ^1.11.10
- version: 1.11.12
+ version: 1.11.13
dompurify:
specifier: ^3.0.11
version: 3.1.6
@@ -253,7 +253,7 @@ importers:
version: 4.6.6
stylis:
specifier: ^4.3.1
- version: 4.3.2
+ version: 4.3.4
ts-dedent:
specifier: ^2.2.0
version: 2.2.0
@@ -266,7 +266,7 @@ importers:
version: 8.0.2
'@types/cytoscape':
specifier: ^3.21.4
- version: 3.21.5
+ version: 3.21.7
'@types/d3':
specifier: ^7.4.3
version: 7.4.3
@@ -332,13 +332,13 @@ importers:
version: 3.7.7
jsdom:
specifier: ^24.0.0
- version: 24.1.1
+ version: 24.1.3
json-schema-to-typescript:
specifier: ^13.1.2
version: 13.1.2
micromatch:
specifier: ^4.0.5
- version: 4.0.7
+ version: 4.0.8
path-browserify:
specifier: ^1.0.1
version: 1.0.1
@@ -380,10 +380,10 @@ importers:
version: 5.0.0
vitepress:
specifier: ^1.0.1
- version: 1.1.4(@algolia/client-search@4.24.0)(@types/node@20.14.14)(axios@1.7.3)(postcss@8.4.40)(search-insights@2.15.0)(terser@5.31.6)(typescript@5.4.5)
+ version: 1.1.4(@algolia/client-search@4.24.0)(@types/node@22.5.0)(axios@1.7.5)(postcss@8.4.41)(search-insights@2.15.0)(terser@5.31.6)(typescript@5.4.5)
vitepress-plugin-search:
specifier: 1.0.4-alpha.22
- version: 1.0.4-alpha.22(flexsearch@0.7.43)(vitepress@1.1.4(@algolia/client-search@4.24.0)(@types/node@20.14.14)(axios@1.7.3)(postcss@8.4.40)(search-insights@2.15.0)(terser@5.31.6)(typescript@5.4.5))(vue@3.4.35(typescript@5.4.5))
+ version: 1.0.4-alpha.22(flexsearch@0.7.43)(vitepress@1.1.4(@algolia/client-search@4.24.0)(@types/node@22.5.0)(axios@1.7.5)(postcss@8.4.41)(search-insights@2.15.0)(terser@5.31.6)(typescript@5.4.5))(vue@3.4.35(typescript@5.4.5))
packages/mermaid-example-diagram:
dependencies:
@@ -427,7 +427,7 @@ importers:
dependencies:
'@zenuml/core':
specifier: ^3.23.27
- version: 3.24.2(typescript@5.4.5)
+ version: 3.24.3(typescript@5.4.5)
devDependencies:
mermaid:
specifier: workspace:^
@@ -440,7 +440,7 @@ importers:
version: 7.4.47
'@vueuse/core':
specifier: ^10.9.0
- version: 10.11.0(vue@3.4.35(typescript@5.4.5))
+ version: 10.11.1(vue@3.4.38(typescript@5.4.5))
font-awesome:
specifier: ^4.7.0
version: 4.7.0
@@ -452,7 +452,7 @@ importers:
version: link:../..
vue:
specifier: ^3.4.21
- version: 3.4.35(typescript@5.4.5)
+ version: 3.4.38(typescript@5.4.5)
devDependencies:
'@iconify-json/carbon':
specifier: ^1.1.31
@@ -462,10 +462,10 @@ importers:
version: 0.59.4
'@vite-pwa/vitepress':
specifier: ^0.4.0
- version: 0.4.0(vite-plugin-pwa@0.19.8(vite@5.3.5(@types/node@20.14.14)(terser@5.31.6))(workbox-build@7.1.1(@types/babel__core@7.20.5))(workbox-window@7.1.0))
+ version: 0.4.0(vite-plugin-pwa@0.19.8(vite@5.3.5(@types/node@22.5.0)(terser@5.31.6))(workbox-build@7.1.1(@types/babel__core@7.20.5))(workbox-window@7.1.0))
'@vitejs/plugin-vue':
specifier: ^5.0.0
- version: 5.1.2(vite@5.3.5(@types/node@20.14.14)(terser@5.31.6))(vue@3.4.35(typescript@5.4.5))
+ version: 5.1.2(vite@5.3.5(@types/node@22.5.0)(terser@5.31.6))(vue@3.4.38(typescript@5.4.5))
fast-glob:
specifier: ^3.3.2
version: 3.3.2
@@ -477,19 +477,19 @@ importers:
version: 1.1.2
unocss:
specifier: ^0.59.0
- version: 0.59.4(postcss@8.4.40)(rollup@2.79.1)(vite@5.3.5(@types/node@20.14.14)(terser@5.31.6))
+ version: 0.59.4(postcss@8.4.41)(rollup@2.79.1)(vite@5.3.5(@types/node@22.5.0)(terser@5.31.6))
unplugin-vue-components:
specifier: ^0.26.0
- version: 0.26.0(@babel/parser@7.25.4)(rollup@2.79.1)(vue@3.4.35(typescript@5.4.5))
+ version: 0.26.0(@babel/parser@7.25.4)(rollup@2.79.1)(vue@3.4.38(typescript@5.4.5))
vite:
specifier: ^5.0.0
- version: 5.3.5(@types/node@20.14.14)(terser@5.31.6)
+ version: 5.3.5(@types/node@22.5.0)(terser@5.31.6)
vite-plugin-pwa:
specifier: ^0.19.7
- version: 0.19.8(vite@5.3.5(@types/node@20.14.14)(terser@5.31.6))(workbox-build@7.1.1(@types/babel__core@7.20.5))(workbox-window@7.1.0)
+ version: 0.19.8(vite@5.3.5(@types/node@22.5.0)(terser@5.31.6))(workbox-build@7.1.1(@types/babel__core@7.20.5))(workbox-window@7.1.0)
vitepress:
specifier: 1.1.4
- version: 1.1.4(@algolia/client-search@4.24.0)(@types/node@20.14.14)(axios@1.7.3)(postcss@8.4.40)(search-insights@2.15.0)(terser@5.31.6)(typescript@5.4.5)
+ version: 1.1.4(@algolia/client-search@4.24.0)(@types/node@22.5.0)(axios@1.7.5)(postcss@8.4.41)(search-insights@2.15.0)(terser@5.31.6)(typescript@5.4.5)
workbox-window:
specifier: ^7.0.0
version: 7.1.0
@@ -619,8 +619,8 @@ packages:
resolution: {integrity: sha512-6v5box6DqmvyfVNe0tjRSCIZpfkn6fc0DZMZI4+jKLczh4zm+Tlfey1ECavP3fRZayh79SGCpeIDqBNI9Ll7dA==}
engines: {node: '>=12.13.0'}
- '@applitools/core@4.18.0':
- resolution: {integrity: sha512-GCW9pwPwXIieKLF5cdA2ezuwwzWHFFnq9mGNAfsvWc1/o2rchj7VRxMRo2566esaniOGVtY7klf9HzJaaZQubQ==}
+ '@applitools/core@4.18.1':
+ resolution: {integrity: sha512-Z0tW1PVOHcYL3NCn83B6lErKElHE9YkIJx+rQt8WqQw9PMpkUtiAwRA1sx6F10U0xSKbAJHRq7A9Yr4FMwnVog==}
engines: {node: '>=12.13.0'}
hasBin: true
@@ -628,8 +628,8 @@ packages:
resolution: {integrity: sha512-rH3aq/dkTweEUgS/MKuthD79CZDqpQVJlqmxqVxLZVAzbeFxYdTG/gnfG0zj6YJ025jzcPH2ktdW16Rl3QLutg==}
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
- '@applitools/dom-capture@11.3.0':
- resolution: {integrity: sha512-LGcNSPgzvlL/afQGUyykTfuPR6N+GYYQ5EaA/f5j4lgfYVxEyG/6t1W62GTImR86ZVHLEsKAQUKVE7jbKAZmVw==}
+ '@applitools/dom-capture@11.3.1':
+ resolution: {integrity: sha512-TylDa9uir7LnZ8e/E76rMRR5+1t927RQeATqIub0WnWMHMCs3reNlinbolQ4PWS1zIwkGkVXQzClSF/dRz6OWA==}
engines: {node: '>=12.13.0'}
'@applitools/dom-shared@1.0.15':
@@ -662,13 +662,13 @@ packages:
engines: {node: '>=14.0.0'}
hasBin: true
- '@applitools/eyes-cypress@3.44.6':
- resolution: {integrity: sha512-2RfdDNvF9qptTzMg2akjPsVXA/gQcmj0+2QHM+g8r+Shy5A6lfAhA2QAChTM7zvshTT8ZgxY8J1w+3TMbLdseQ==}
+ '@applitools/eyes-cypress@3.44.7':
+ resolution: {integrity: sha512-YgzUnc4YAoEQSNSLlwZvyP50Xua2U6h3WV7KAU+E9MbR2RwBBddUhI0y3PhnzJOZgvUJvSfdwqbw0Cxn0CfVjg==}
engines: {node: '>=12.13.0'}
hasBin: true
- '@applitools/eyes@1.22.0':
- resolution: {integrity: sha512-x4UQSDxWPOyEUGr9lrOYxhI+bHPpvzYbNAFr1C/99WY+T92GjNlXduBflx5NqOEFjbS1RzRuPDPq6Fbk/U/qhQ==}
+ '@applitools/eyes@1.22.1':
+ resolution: {integrity: sha512-+WOYGsRF3CuyLZQHJ2P4l3AjFFlHtW+s7kmjcyVswlvEcVJDxsiQzFnklo37IbbyX6oMi2Df8jOYPjXNCTQd7A==}
engines: {node: '>=12.13.0'}
'@applitools/functional-commons@1.6.0':
@@ -730,22 +730,26 @@ packages:
resolution: {integrity: sha512-qgJqx2yjlJBf79YyFehf1nSp4AXOdzJn3POQyg8CMWV0YH6HsjAfJjYaNrbXFcGYCSpPEJGhGehxC7GVKHX3YA==}
engines: {node: '>=12.13.0'}
- '@argos-ci/browser@2.1.2':
- resolution: {integrity: sha512-4dpz76kW0KnXCYdxtkcdiaYUM4owmKtT9zPqrd1yPo+VuSNCNULyCZJ4mdy0aXWT716JLMMmIZ3AnQSkyaqvaA==}
+ '@argos-ci/api-client@0.2.0':
+ resolution: {integrity: sha512-stqugeAtbHjD2MwezvgJ4hU0HvlEGwGDVsJvUUD4YoRS0putS8yFjXuempkc90XGeHDEfYZgvG372rcK7/FClA==}
engines: {node: '>=18.0.0'}
- '@argos-ci/core@2.4.1':
- resolution: {integrity: sha512-Sl+5Zq4LBZF+CDB0eXGdTOLv3E9bubO2tfpDncQku5/s/N+2Ptn0JAw/Vc3EdJAtMWj1G8uy+6cvtV+eaVNnFg==}
+ '@argos-ci/browser@2.1.3':
+ resolution: {integrity: sha512-C9/k32HrmkHkUT9KrhHuOvlli1ibPGE1nkToC6+t4cAmbJCIU8HFrVa6VG2UT3xJjLht+gpqvPwTbJAsCRXv3A==}
engines: {node: '>=18.0.0'}
- '@argos-ci/cypress@2.1.1':
- resolution: {integrity: sha512-ftRjQBt4mfCecJ7jnnsVVbU/71c9mqlbsle+75D4vaDWnch06J4XbQEJ2K56S3eupj3iOHkGn+Nf9DNsOiT7PQ==}
+ '@argos-ci/core@2.5.0':
+ resolution: {integrity: sha512-xNHKWzuSLHXm/5fhdEQv8zUwExeEkYzw6CV/Ha9rUBBTPomZL5CNxpXQ/ww1AA4mRC5dq3CfgreRq8qj7HQMVQ==}
+ engines: {node: '>=18.0.0'}
+
+ '@argos-ci/cypress@2.1.2':
+ resolution: {integrity: sha512-J+G7EoyQTz6ev9yZBKpl1lRuizUwrX4ZMfqfyB9fDtPhyNcW3V5nTZh2iMBsNW/4hDnL5SQ5Tge5eJfuGkffgA==}
engines: {node: '>=18.0.0'}
peerDependencies:
cypress: ^12.0.0 || ^13.0.0
- '@argos-ci/util@2.1.0':
- resolution: {integrity: sha512-/78zJjZJCh3i7Eh3/lo7ybXK2pzXFGUNHbK3SgJNKNbFiBDllNRfy+x0kccjvN2gCCDz877jnFOlSoZZuMK56A==}
+ '@argos-ci/util@2.1.1':
+ resolution: {integrity: sha512-UyACLQe9rvCPbo9muhrLte1AD75kQlcGBuecjmaotaF9MBMj+9Yz+TYs1jJrlLMgqowfIgbXjBYmkXRUn36tCg==}
engines: {node: '>=18.0.0'}
'@babel/code-frame@7.24.7':
@@ -1332,12 +1336,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/preset-env@7.25.3':
- resolution: {integrity: sha512-QsYW7UeAaXvLPX9tdVliMJE7MD7M6MLYVTovRTIwhoYQVFHR1rM4wO8wqAezYi3/BpSD+NzVCZ69R6smWiIi8g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/preset-env@7.25.4':
resolution: {integrity: sha512-W9Gyo+KmcxjGahtt3t9fb14vFRWvPpu5pT6GBlovAK6BTBcxgjfVMSQCfJl4oi35ODrxP6xx2Wr8LNST57Mraw==}
engines: {node: '>=6.9.0'}
@@ -1476,46 +1474,26 @@ packages:
resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
engines: {node: '>=0.1.90'}
- '@cspell/cspell-bundled-dicts@8.13.1':
- resolution: {integrity: sha512-ylAwnIdxBMJ9v6BHpFAQFZM+5zbybLtqVQJG7zQePts4e0/Qr2xjYFbC3F+fovZqyXPIx24BR+S6gFJNO1OdAw==}
- engines: {node: '>=18'}
-
'@cspell/cspell-bundled-dicts@8.13.3':
resolution: {integrity: sha512-OfCxUBMyayxKyeDaUZG3LQpiyH8MFUbg9nbIZCGh2x8U6N0fHaP9uR6R+gPzdi/bJp32Kr+RC/Yebojd+AQCGA==}
engines: {node: '>=18'}
- '@cspell/cspell-json-reporter@8.13.1':
- resolution: {integrity: sha512-vYZTBRkYjpNBifGNbYQsgIXesDEdUa9QAwllDcLZGKbhh5mY/C1ygPnAVpYDYiJNt1WCeIqW286DUyjRjkmHeA==}
- engines: {node: '>=18'}
-
- '@cspell/cspell-pipe@8.13.1':
- resolution: {integrity: sha512-acLWTQv3yWfeWXMds/cfQKZapslOrLHVL4VDp4rFyL/EnfgaCr7Ew9hQ7zAIARY3r/n0dByqWbOt2HKthdhx/g==}
+ '@cspell/cspell-json-reporter@8.13.3':
+ resolution: {integrity: sha512-QrHxWkm0cfD+rTjFOxm5lpE4+wBANDzMIM8NOeQC6v8Dc1L8PUkm6hF6CsEv2tKmuwvdVr+jy6GilDMkPXalCg==}
engines: {node: '>=18'}
'@cspell/cspell-pipe@8.13.3':
resolution: {integrity: sha512-6a9Zd+fDltgXoJ0fosWqEMx0UdXBXZ7iakhslMNPRmv7GhVAoHBoIXzMVilOE4kYT2Mh/9NM/QW/NbNEpneZIQ==}
engines: {node: '>=18'}
- '@cspell/cspell-resolver@8.13.1':
- resolution: {integrity: sha512-EGdb7KLYCklV3sLxf/895b7s6sExh8DCHZFpDos2hjKwMt+F4ynsu1+ceybQtqoUF/MsyLoJXrrmPvV2uGVmUQ==}
- engines: {node: '>=18'}
-
'@cspell/cspell-resolver@8.13.3':
resolution: {integrity: sha512-vlwtMTEWsPPtWfktzT75eGQ0n+0M+9kN+89eSvUUYdCfvY9XAS6z+bTmhS2ULJgntgWtX6gUjABQK0PYYVedOg==}
engines: {node: '>=18'}
- '@cspell/cspell-service-bus@8.13.1':
- resolution: {integrity: sha512-oLFJfxuB1rwGXn3eD5qSF9nf0lHu6YjO0JcrjWhAZQ0r3AsO97gsX50wwCFCw6szVU3rd1cTUktW0KYEZUY6dA==}
- engines: {node: '>=18'}
-
'@cspell/cspell-service-bus@8.13.3':
resolution: {integrity: sha512-mFkeWXwGQSDxRiN6Kez77GaMNGNgG7T6o9UE42jyXEgf/bLJTpefbUy4fY5pU3p2mA0eoMzmnJX8l+TC5YJpbA==}
engines: {node: '>=18'}
- '@cspell/cspell-types@8.13.1':
- resolution: {integrity: sha512-9dJdmyXLXJVesCJa/DWgwKsEC9p2RRFc6KORcLhNvtm1tE9TvCXiu5jV47sOmYXd6Hwan8IurBXXTz82CLVjPQ==}
- engines: {node: '>=18'}
-
'@cspell/cspell-types@8.13.3':
resolution: {integrity: sha512-lA5GbhLOL6FlKCWNMbooRFgNGfTsM6NJnHz60+EEN7XD9OgpFc7w+MBcK4aHsVCxcrIvnejIc8xQDqPnrdmN3w==}
engines: {node: '>=18'}
@@ -1532,9 +1510,6 @@ packages:
'@cspell/dict-companies@3.1.4':
resolution: {integrity: sha512-y9e0amzEK36EiiKx3VAA+SHQJPpf2Qv5cCt5eTUSggpTkiFkCh6gRKQ97rVlrKh5GJrqinDwYIJtTsxuh2vy2Q==}
- '@cspell/dict-cpp@5.1.12':
- resolution: {integrity: sha512-6lXLOFIa+k/qBcu0bjaE/Kc6v3sh9VhsDOXD1Dalm3zgd0QIMjp5XBmkpSdCAK3pWCPV0Se7ysVLDfCea1BuXg==}
-
'@cspell/dict-cpp@5.1.15':
resolution: {integrity: sha512-5X8SouN/qIUrBTcDEevnKU6G3cRSm3Vm7dQEcjHaptIWp+/2YMknIfYbnhKeR1G9V/sbQaY4CVsVAKEaehY+7Q==}
@@ -1544,9 +1519,6 @@ packages:
'@cspell/dict-csharp@4.0.2':
resolution: {integrity: sha512-1JMofhLK+4p4KairF75D3A924m5ERMgd1GvzhwK2geuYgd2ZKuGW72gvXpIV7aGf52E3Uu1kDXxxGAiZ5uVG7g==}
- '@cspell/dict-css@4.0.12':
- resolution: {integrity: sha512-vGBgPM92MkHQF5/2jsWcnaahOZ+C6OE/fPvd5ScBP72oFY9tn5GLuomcyO0z8vWCr2e0nUSX1OGimPtcQAlvSw==}
-
'@cspell/dict-css@4.0.13':
resolution: {integrity: sha512-WfOQkqlAJTo8eIQeztaH0N0P+iF5hsJVKFuhy4jmARPISy8Efcv8QXk2/IVbmjJH0/ZV7dKRdnY5JFVXuVz37g==}
@@ -1562,11 +1534,8 @@ packages:
'@cspell/dict-docker@1.1.7':
resolution: {integrity: sha512-XlXHAr822euV36GGsl2J1CkBIVg3fZ6879ZOg5dxTIssuhUOCiV2BuzKZmt6aIFmcdPmR14+9i9Xq+3zuxeX0A==}
- '@cspell/dict-dotnet@5.0.2':
- resolution: {integrity: sha512-UD/pO2A2zia/YZJ8Kck/F6YyDSpCMq0YvItpd4YbtDVzPREfTZ48FjZsbYi4Jhzwfvc6o8R56JusAE58P+4sNQ==}
-
- '@cspell/dict-dotnet@5.0.3':
- resolution: {integrity: sha512-q8+b8YWYv+9Q+AbU3mH/RHE9aovhCuGtMuNSsx+YnTofEhVQkJR3vdrYjhOBg3epIiZVUS83VP0vxPLPa+UTug==}
+ '@cspell/dict-dotnet@5.0.4':
+ resolution: {integrity: sha512-FCjeagwME0f5pg7AjhqidsenKnskFN2S6JMaMu5TZn2w+wPVpLnsqmcl0dtW6K/mDrutTYwC/gQFlLbDzoRw4g==}
'@cspell/dict-elixir@4.0.3':
resolution: {integrity: sha512-g+uKLWvOp9IEZvrIvBPTr/oaO6619uH/wyqypqvwpmnmpjcfi8+/hqZH8YNKt15oviK8k4CkINIqNhyndG9d9Q==}
@@ -1601,9 +1570,6 @@ packages:
'@cspell/dict-golang@6.0.11':
resolution: {integrity: sha512-BMFIDGh1HaFUe1cYBT1dotqyIQG2j3VkNntGQTBa/7i0aBnC5PBJDiAXnUeBHi0AVrz0hyAc7xtcK5KyKCEzwg==}
- '@cspell/dict-golang@6.0.9':
- resolution: {integrity: sha512-etDt2WQauyEQDA+qPS5QtkYTb2I9l5IfQftAllVoB1aOrT6bxxpHvMEpJ0Hsn/vezxrCqa/BmtUbRxllIxIuSg==}
-
'@cspell/dict-google@1.0.1':
resolution: {integrity: sha512-dQr4M3n95uOhtloNSgB9tYYGXGGEGEykkFyRtfcp5pFuEecYUa0BSgtlGKx9RXVtJtKgR+yFT/a5uQSlt8WjqQ==}
@@ -1646,29 +1612,23 @@ packages:
'@cspell/dict-npm@5.0.18':
resolution: {integrity: sha512-weMTyxWpzz19q4wv9n183BtFvdD5fCjtze+bFKpl+4rO/YlPhHL2cXLAeexJz/VDSBecwX4ybTZYoknd1h2J4w==}
- '@cspell/dict-php@4.0.8':
- resolution: {integrity: sha512-TBw3won4MCBQ2wdu7kvgOCR3dY2Tb+LJHgDUpuquy3WnzGiSDJ4AVelrZdE1xu7mjFJUr4q48aB21YT5uQqPZA==}
+ '@cspell/dict-php@4.0.9':
+ resolution: {integrity: sha512-Rg6+hc8zexiMyT5sXzYdkgr5irYCxl8Rn/OKgUOy7rMN7eD010VefGm62RG6jIBpUIUYFM00Qpc5RA+H4L0KyQ==}
'@cspell/dict-powershell@5.0.5':
resolution: {integrity: sha512-3JVyvMoDJesAATYGOxcUWPbQPUvpZmkinV3m8HL1w1RrjeMVXXuK7U1jhopSneBtLhkU+9HKFwgh9l9xL9mY2Q==}
- '@cspell/dict-public-licenses@2.0.7':
- resolution: {integrity: sha512-KlBXuGcN3LE7tQi/GEqKiDewWGGuopiAD0zRK1QilOx5Co8XAvs044gk4MNIQftc8r0nHeUI+irJKLGcR36DIQ==}
-
'@cspell/dict-public-licenses@2.0.8':
resolution: {integrity: sha512-Sup+tFS7cDV0fgpoKtUqEZ6+fA/H+XUgBiqQ/Fbs6vUE3WCjJHOIVsP+udHuyMH7iBfJ4UFYOYeORcY4EaKdMg==}
- '@cspell/dict-python@4.2.3':
- resolution: {integrity: sha512-C1CPX9wwEGgcHv/p7KfjuIOp1G6KNyx5gWYweAd6/KPv+ZpeM1v572zFUTmpO8WDuAfKFf00nqYL8/GmCENWBw==}
-
'@cspell/dict-python@4.2.4':
resolution: {integrity: sha512-sCtLBqMreb+8zRW2bXvFsfSnRUVU6IFm4mT6Dc4xbz0YajprbaPPh/kOUTw5IJRP8Uh+FFb7Xp2iH03CNWRq/A==}
'@cspell/dict-r@2.0.1':
resolution: {integrity: sha512-KCmKaeYMLm2Ip79mlYPc8p+B2uzwBp4KMkzeLd5E6jUlCL93Y5Nvq68wV5fRLDRTf7N1LvofkVFWfDcednFOgA==}
- '@cspell/dict-ruby@5.0.2':
- resolution: {integrity: sha512-cIh8KTjpldzFzKGgrqUX4bFyav5lC52hXDKo4LbRuMVncs3zg4hcSf4HtURY+f2AfEZzN6ZKzXafQpThq3dl2g==}
+ '@cspell/dict-ruby@5.0.3':
+ resolution: {integrity: sha512-V1xzv9hN6u8r6SM4CkYdsxs4ov8gjXXo0Twfx5kWhLXbEVxTXDMt7ohLTqpy2XlF5mutixZdbHMeFiAww8v+Ug==}
'@cspell/dict-rust@4.0.5':
resolution: {integrity: sha512-DIvlPRDemjKQy8rCqftAgGNZxY5Bg+Ps7qAIJjxkSjmMETyDgl0KTVuaJPt7EK4jJt6uCZ4ILy96npsHDPwoXA==}
@@ -1676,14 +1636,8 @@ packages:
'@cspell/dict-scala@5.0.3':
resolution: {integrity: sha512-4yGb4AInT99rqprxVNT9TYb1YSpq58Owzq7zi3ZS5T0u899Y4VsxsBiOgHnQ/4W+ygi+sp+oqef8w8nABR2lkg==}
- '@cspell/dict-software-terms@4.0.10':
- resolution: {integrity: sha512-FwFwPnTlzyjtndCxUnaVHk7wYpWRC4EqY9/Q5q2pROKt1rQILRmutjIqzHLH6WX9sb/+wVNb7UKwKO32eflp4g==}
-
- '@cspell/dict-software-terms@4.0.4':
- resolution: {integrity: sha512-AHr3Wxa4pxbpKgxhyQseBmoJhdyeraeRGdQn0e8YD5pz4J6Mu47MLzKysasDKWK/yzmHQfwAsb2zm2k+ItMEUw==}
-
- '@cspell/dict-sql@2.1.4':
- resolution: {integrity: sha512-wsrNK6UBQ92IzQ4SqQqgM04BEYzqVsk3qZH3ZgascaqDtUgK6GI+z3Czi0rQ+9Qe2zKiklGnGMC8sJwYdlIw7g==}
+ '@cspell/dict-software-terms@4.0.11':
+ resolution: {integrity: sha512-L4qtowZEnPGFz1BXIDwcdgF/Dgr4oMKO0HT98NqXafxZ8KGSHe/QBfisnHd/flceNHaw7Sd7iRW0ICJtXiWfLA==}
'@cspell/dict-sql@2.1.5':
resolution: {integrity: sha512-FmxanytHXss7GAWAXmgaxl3icTCW7YxlimyOSPNfm+njqeUDjw3kEv4mFNDDObBJv8Ec5AWCbUDkWIpkE3IpKg==}
@@ -1703,10 +1657,6 @@ packages:
'@cspell/dict-vue@3.0.0':
resolution: {integrity: sha512-niiEMPWPV9IeRBRzZ0TBZmNnkK3olkOPYxC1Ny2AX4TGlYRajcW0WUtoSHmvvjZNfWLSg2L6ruiBeuPSbjnG6A==}
- '@cspell/dynamic-import@8.13.1':
- resolution: {integrity: sha512-jMqJHWmQy+in99JMSFlaGV9P033gCx7DCZvGO/ZSeZ2EatrUTanJk3oTG1TZknZydb0nnxr1mgTWXN7PCAAXDg==}
- engines: {node: '>=18.0'}
-
'@cspell/dynamic-import@8.13.3':
resolution: {integrity: sha512-YN83CFWnMkt9B0q0RBadfEoptUaDRqBikh8b91MOQ0haEnUo6t57j4jAaLnbIEP4ynzMhgruWFKpIC/QaEtCuA==}
engines: {node: '>=18.0'}
@@ -1717,24 +1667,16 @@ packages:
peerDependencies:
eslint: ^7 || ^8 || ^9
- '@cspell/strong-weak-map@8.13.1':
- resolution: {integrity: sha512-ga1ibI9ZLJWNszfP7e6qQ8gnoQOP9rE/clALMAim9ssO6cmMhEEm+i1ROH4nsDfThd6sVlUJ0IOtx5dEqPmWxw==}
- engines: {node: '>=18'}
-
'@cspell/strong-weak-map@8.13.3':
resolution: {integrity: sha512-/QYUEthesPuDarOHa6kcWKJmVq0HIotjPrmAWQ5QpH+dDik1Qin4G/9QdnWX75ueR4DC4WFjBNBU14C4TVSwHQ==}
engines: {node: '>=18'}
- '@cspell/url@8.13.1':
- resolution: {integrity: sha512-cCyojz5ovgGCexhez2urle4Q1UOEsp96lvl4pDmWNDHa/6n8dqiIn60SVzQIsAHzJ4yEV077RSaIrTlq/T+oSQ==}
- engines: {node: '>=18.0'}
-
'@cspell/url@8.13.3':
resolution: {integrity: sha512-hsxoTnZHwtdR2x9QEE6yfDBB1LUwAj67o1GyKTvI8A2OE/AfzAttirZs+9sxgOGWoBdTOxM9sMLtqB3SxtDB3A==}
engines: {node: '>=18.0'}
- '@cypress/code-coverage@3.12.44':
- resolution: {integrity: sha512-5Eau3tnJqZJo1OddOOEMyWs1HCwlAOgDs1rFPaCXJ4a5Y2BR4PH4fAzCdMvIqpBnCiVSL8gOYv6JfND3aUuJJQ==}
+ '@cypress/code-coverage@3.12.45':
+ resolution: {integrity: sha512-QRvdc9Zmner/CxQ1F5jcNVZR8P8VrRTyE8THcisxnB6D3AMIKKSmjYUGH6OnWBDF/vi3CqimuMSbrUfzmPzmhw==}
peerDependencies:
'@babel/core': ^7.0.1
'@babel/preset-env': ^7.0.0
@@ -1961,17 +1903,17 @@ packages:
'@fastify/error@2.0.0':
resolution: {integrity: sha512-wI3fpfDT0t7p8E6dA2eTECzzOd+bZsZCJ2Hcv+Onn2b7ZwK3RwD27uW2QDaMtQhAfWQQP+WNK7nKf0twLsBf9w==}
- '@floating-ui/core@1.6.5':
- resolution: {integrity: sha512-8GrTWmoFhm5BsMZOTHeGD2/0FLKLQQHvO/ZmQga4tKempYRLz8aqJGqXVuQgisnMObq2YZ2SgkwctN1LOOxcqA==}
+ '@floating-ui/core@1.6.7':
+ resolution: {integrity: sha512-yDzVT/Lm101nQ5TCVeK65LtdN7Tj4Qpr9RTXJ2vPFLqtLxwOrpoxAHAJI8J3yYWUc40J0BDBheaitK5SJmno2g==}
- '@floating-ui/dom@1.6.8':
- resolution: {integrity: sha512-kx62rP19VZ767Q653wsP1XZCGIirkE09E0QUGNYTM/ttbbQHqcGPdSfWFxUyyNLc/W6aoJRBajOSXhP6GXjC0Q==}
+ '@floating-ui/dom@1.6.10':
+ resolution: {integrity: sha512-fskgCFv8J8OamCmyun8MfjB1Olfn+uZKjOKZ0vhYF3gRmEUXcGOjxWL8bBr7i4kIuPZ2KD2S3EUIOxnjC8kl2A==}
- '@floating-ui/utils@0.2.5':
- resolution: {integrity: sha512-sTcG+QZ6fdEUObICavU+aB3Mp8HY4n14wYHdxK4fXjPmv3PXZZeY5RaguJmGyeH/CJQhX3fqKUtS4qc1LoHwhQ==}
+ '@floating-ui/utils@0.2.7':
+ resolution: {integrity: sha512-X8R8Oj771YRl/w+c1HqAC1szL8zWQRwFvgDwT129k9ACdBoud/+/rX9V0qiMl6LWUdP9voC2nDVZYPMQQsb6eA==}
- '@floating-ui/vue@1.1.2':
- resolution: {integrity: sha512-7pq8HfhVhxOpV6iIMKSslI51fwFYy8G0BF0GjhlhpmUhVwL8jCByvcjzTwEtRWFVRrGD/I9kLp6eUHKumiUTjw==}
+ '@floating-ui/vue@1.1.4':
+ resolution: {integrity: sha512-ammH7T3vyCx7pmm9OF19Wc42zrGnUw0QvLoidgypWsCLJMtGXEwY7paYIHO+K+oLC3mbWpzIHzeTVienYenlNg==}
'@hapi/hoek@9.3.0':
resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==}
@@ -1979,8 +1921,8 @@ packages:
'@hapi/topo@5.1.0':
resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==}
- '@headlessui-float/vue@0.14.0':
- resolution: {integrity: sha512-hx0IkJ7JPcwDeimco6fe0+IknknL1gUYIGu11OCn0JWlOoSAmO6sx2DxPwSEz1Wsq34X6Z8BwCwcPVuphZ1zMg==}
+ '@headlessui-float/vue@0.14.3':
+ resolution: {integrity: sha512-eIX+zawgy/8ijZM7t7GfNDeEZpL068wTJ3U+gxSepO5NprgOUijHzG3TBFhERbsP4dDq3i0Bs7EaKbk+W57FOg==}
peerDependencies:
'@headlessui/vue': ^1.0.0
vue: ^3.0.0
@@ -2014,116 +1956,108 @@ packages:
'@iconify/utils@2.1.30':
resolution: {integrity: sha512-bY0IO5xLOlbzJBnjWLxknp6Sss3yla03sVY9VeUz9nT6dbc+EGKlLfCt+6uytJnWm5CUvTF/BNotsLWF7kI61A==}
- '@img/sharp-darwin-arm64@0.33.4':
- resolution: {integrity: sha512-p0suNqXufJs9t3RqLBO6vvrgr5OhgbWp76s5gTRvdmxmuv9E1rcaqGUsl3l4mKVmXPkTkTErXediAui4x+8PSA==}
- engines: {glibc: '>=2.26', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ '@img/sharp-darwin-arm64@0.33.5':
+ resolution: {integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [arm64]
os: [darwin]
- '@img/sharp-darwin-x64@0.33.4':
- resolution: {integrity: sha512-0l7yRObwtTi82Z6ebVI2PnHT8EB2NxBgpK2MiKJZJ7cz32R4lxd001ecMhzzsZig3Yv9oclvqqdV93jo9hy+Dw==}
- engines: {glibc: '>=2.26', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ '@img/sharp-darwin-x64@0.33.5':
+ resolution: {integrity: sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [x64]
os: [darwin]
- '@img/sharp-libvips-darwin-arm64@1.0.2':
- resolution: {integrity: sha512-tcK/41Rq8IKlSaKRCCAuuY3lDJjQnYIW1UXU1kxcEKrfL8WR7N6+rzNoOxoQRJWTAECuKwgAHnPvqXGN8XfkHA==}
- engines: {macos: '>=11', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ '@img/sharp-libvips-darwin-arm64@1.0.4':
+ resolution: {integrity: sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==}
cpu: [arm64]
os: [darwin]
- '@img/sharp-libvips-darwin-x64@1.0.2':
- resolution: {integrity: sha512-Ofw+7oaWa0HiiMiKWqqaZbaYV3/UGL2wAPeLuJTx+9cXpCRdvQhCLG0IH8YGwM0yGWGLpsF4Su9vM1o6aer+Fw==}
- engines: {macos: '>=10.13', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ '@img/sharp-libvips-darwin-x64@1.0.4':
+ resolution: {integrity: sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==}
cpu: [x64]
os: [darwin]
- '@img/sharp-libvips-linux-arm64@1.0.2':
- resolution: {integrity: sha512-x7kCt3N00ofFmmkkdshwj3vGPCnmiDh7Gwnd4nUwZln2YjqPxV1NlTyZOvoDWdKQVDL911487HOueBvrpflagw==}
- engines: {glibc: '>=2.26', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ '@img/sharp-libvips-linux-arm64@1.0.4':
+ resolution: {integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==}
cpu: [arm64]
os: [linux]
- '@img/sharp-libvips-linux-arm@1.0.2':
- resolution: {integrity: sha512-iLWCvrKgeFoglQxdEwzu1eQV04o8YeYGFXtfWU26Zr2wWT3q3MTzC+QTCO3ZQfWd3doKHT4Pm2kRmLbupT+sZw==}
- engines: {glibc: '>=2.28', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ '@img/sharp-libvips-linux-arm@1.0.5':
+ resolution: {integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==}
cpu: [arm]
os: [linux]
- '@img/sharp-libvips-linux-s390x@1.0.2':
- resolution: {integrity: sha512-cmhQ1J4qVhfmS6szYW7RT+gLJq9dH2i4maq+qyXayUSn9/3iY2ZeWpbAgSpSVbV2E1JUL2Gg7pwnYQ1h8rQIog==}
- engines: {glibc: '>=2.28', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ '@img/sharp-libvips-linux-s390x@1.0.4':
+ resolution: {integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==}
cpu: [s390x]
os: [linux]
- '@img/sharp-libvips-linux-x64@1.0.2':
- resolution: {integrity: sha512-E441q4Qdb+7yuyiADVi5J+44x8ctlrqn8XgkDTwr4qPJzWkaHwD489iZ4nGDgcuya4iMN3ULV6NwbhRZJ9Z7SQ==}
- engines: {glibc: '>=2.26', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ '@img/sharp-libvips-linux-x64@1.0.4':
+ resolution: {integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==}
cpu: [x64]
os: [linux]
- '@img/sharp-libvips-linuxmusl-arm64@1.0.2':
- resolution: {integrity: sha512-3CAkndNpYUrlDqkCM5qhksfE+qSIREVpyoeHIU6jd48SJZViAmznoQQLAv4hVXF7xyUB9zf+G++e2v1ABjCbEQ==}
- engines: {musl: '>=1.2.2', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ '@img/sharp-libvips-linuxmusl-arm64@1.0.4':
+ resolution: {integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==}
cpu: [arm64]
os: [linux]
- '@img/sharp-libvips-linuxmusl-x64@1.0.2':
- resolution: {integrity: sha512-VI94Q6khIHqHWNOh6LLdm9s2Ry4zdjWJwH56WoiJU7NTeDwyApdZZ8c+SADC8OH98KWNQXnE01UdJ9CSfZvwZw==}
- engines: {musl: '>=1.2.2', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ '@img/sharp-libvips-linuxmusl-x64@1.0.4':
+ resolution: {integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==}
cpu: [x64]
os: [linux]
- '@img/sharp-linux-arm64@0.33.4':
- resolution: {integrity: sha512-2800clwVg1ZQtxwSoTlHvtm9ObgAax7V6MTAB/hDT945Tfyy3hVkmiHpeLPCKYqYR1Gcmv1uDZ3a4OFwkdBL7Q==}
- engines: {glibc: '>=2.26', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ '@img/sharp-linux-arm64@0.33.5':
+ resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [arm64]
os: [linux]
- '@img/sharp-linux-arm@0.33.4':
- resolution: {integrity: sha512-RUgBD1c0+gCYZGCCe6mMdTiOFS0Zc/XrN0fYd6hISIKcDUbAW5NtSQW9g/powkrXYm6Vzwd6y+fqmExDuCdHNQ==}
- engines: {glibc: '>=2.28', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ '@img/sharp-linux-arm@0.33.5':
+ resolution: {integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [arm]
os: [linux]
- '@img/sharp-linux-s390x@0.33.4':
- resolution: {integrity: sha512-h3RAL3siQoyzSoH36tUeS0PDmb5wINKGYzcLB5C6DIiAn2F3udeFAum+gj8IbA/82+8RGCTn7XW8WTFnqag4tQ==}
- engines: {glibc: '>=2.31', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ '@img/sharp-linux-s390x@0.33.5':
+ resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [s390x]
os: [linux]
- '@img/sharp-linux-x64@0.33.4':
- resolution: {integrity: sha512-GoR++s0XW9DGVi8SUGQ/U4AeIzLdNjHka6jidVwapQ/JebGVQIpi52OdyxCNVRE++n1FCLzjDovJNozif7w/Aw==}
- engines: {glibc: '>=2.26', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ '@img/sharp-linux-x64@0.33.5':
+ resolution: {integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [x64]
os: [linux]
- '@img/sharp-linuxmusl-arm64@0.33.4':
- resolution: {integrity: sha512-nhr1yC3BlVrKDTl6cO12gTpXMl4ITBUZieehFvMntlCXFzH2bvKG76tBL2Y/OqhupZt81pR7R+Q5YhJxW0rGgQ==}
- engines: {musl: '>=1.2.2', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ '@img/sharp-linuxmusl-arm64@0.33.5':
+ resolution: {integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [arm64]
os: [linux]
- '@img/sharp-linuxmusl-x64@0.33.4':
- resolution: {integrity: sha512-uCPTku0zwqDmZEOi4ILyGdmW76tH7dm8kKlOIV1XC5cLyJ71ENAAqarOHQh0RLfpIpbV5KOpXzdU6XkJtS0daw==}
- engines: {musl: '>=1.2.2', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ '@img/sharp-linuxmusl-x64@0.33.5':
+ resolution: {integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [x64]
os: [linux]
- '@img/sharp-wasm32@0.33.4':
- resolution: {integrity: sha512-Bmmauh4sXUsUqkleQahpdNXKvo+wa1V9KhT2pDA4VJGKwnKMJXiSTGphn0gnJrlooda0QxCtXc6RX1XAU6hMnQ==}
- engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ '@img/sharp-wasm32@0.33.5':
+ resolution: {integrity: sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [wasm32]
- '@img/sharp-win32-ia32@0.33.4':
- resolution: {integrity: sha512-99SJ91XzUhYHbx7uhK3+9Lf7+LjwMGQZMDlO/E/YVJ7Nc3lyDFZPGhjwiYdctoH2BOzW9+TnfqcaMKt0jHLdqw==}
- engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ '@img/sharp-win32-ia32@0.33.5':
+ resolution: {integrity: sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [ia32]
os: [win32]
- '@img/sharp-win32-x64@0.33.4':
- resolution: {integrity: sha512-3QLocdTRVIrFNye5YocZl+KKpYKP+fksi1QhmOArgx7GyhIbQp/WrJRu176jm8IxromS7RIkzMiMINVdBtC8Aw==}
- engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ '@img/sharp-win32-x64@0.33.5':
+ resolution: {integrity: sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [x64]
os: [win32]
@@ -2451,11 +2385,11 @@ packages:
resolution: {integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==}
engines: {node: '>=10'}
- '@tanstack/virtual-core@3.8.4':
- resolution: {integrity: sha512-iO5Ujgw3O1yIxWDe9FgUPNkGjyT657b1WNX52u+Wv1DyBFEpdCdGkuVaky0M3hHFqNWjAmHWTn4wgj9rTr7ZQg==}
+ '@tanstack/virtual-core@3.10.4':
+ resolution: {integrity: sha512-yHyli4RHVsI+eJ0RjmOsjA9RpHp3/Zah9t+iRjmFa72dq00TeG/NwuLYuCV6CB4RkWD4i5RD421j1eb6BdKgvQ==}
- '@tanstack/vue-virtual@3.8.5':
- resolution: {integrity: sha512-JBHw3xFUslYgrbvNlCYtTWwFo8zjzRs7c2rs6B4JKFXWyP5yHuoeivgQgeZ34t6O6lJTNqc/K4ccmmcmKqpMPA==}
+ '@tanstack/vue-virtual@3.10.4':
+ resolution: {integrity: sha512-oikrjnC7BnUCmqh5ptemclUK6EtJj48AdLcJx1t2fTLQyu+60Alo6gPGC3cANgmbEP/1C9DptbeMcm5AAjyBVg==}
peerDependencies:
vue: ^2.7.0 || ^3.0.0
@@ -2499,8 +2433,8 @@ packages:
'@types/cors@2.8.17':
resolution: {integrity: sha512-8CGDvrBj1zgo2qE+oS3pOCyYNqCPryMWY2bGfwA0dcfopWGgxs+78df0Rs3rc9THP4JkOhLsAa+15VdpAqkcUA==}
- '@types/cytoscape@3.21.5':
- resolution: {integrity: sha512-fzYT3vqY5J4gxVXDOsCgDpm0ZdU8bQq+wCv0ucS0MSTtvQdjs3lcb2VetJiUSAd4WBgouqizI+JT1f8Yc6eY7Q==}
+ '@types/cytoscape@3.21.7':
+ resolution: {integrity: sha512-dP4UByJtfu5GjMJuv58yCIRxjCp4cP0Wp+Qd46L3Gom0hcV4OPmSOLqt83vArNcYRZLFCAyAk+lcC8oqQtcsqw==}
'@types/d3-array@3.2.1':
resolution: {integrity: sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==}
@@ -2721,12 +2655,18 @@ packages:
'@types/node@12.20.55':
resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
- '@types/node@18.19.43':
- resolution: {integrity: sha512-Mw/YlgXnyJdEwLoFv2dpuJaDFriX+Pc+0qOBJ57jC1H6cDxIj2xc5yUrdtArDVG0m+KV6622a4p2tenEqB3C/g==}
+ '@types/node@18.19.45':
+ resolution: {integrity: sha512-VZxPKNNhjKmaC1SUYowuXSRSMGyQGmQjvvA1xE4QZ0xce2kLtEhPDS+kqpCPBZYgqblCLQ2DAjSzmgCM5auvhA==}
'@types/node@20.14.14':
resolution: {integrity: sha512-d64f00982fS9YoOgJkAMolK7MN8Iq3TDdVjchbYHdEmjth/DHowx82GnoA+tVUAN+7vxfYUgAzi+JXbKNd2SDQ==}
+ '@types/node@20.14.15':
+ resolution: {integrity: sha512-Fz1xDMCF/B00/tYSVMlmK7hVeLh7jE5f3B7X1/hmV0MJBwE27KlS7EvD/Yp+z1lm8mVhwV5w+n8jOZG8AfTlKw==}
+
+ '@types/node@22.5.0':
+ resolution: {integrity: sha512-DkFrJOe+rfdHTqqMg0bSNlGlQ85hSoh2TPzZyhHsXnMtligRWpxUySiyw8FY14ITt24HVCiQPWxS3KO/QlGmWg==}
+
'@types/normalize-package-data@2.4.4':
resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
@@ -3029,23 +2969,35 @@ packages:
'@vitest/utils@1.6.0':
resolution: {integrity: sha512-21cPiuGMoMZwiOHa2i4LXkMkMkCGzA+MVFV70jRwHo95dL4x/ts5GZhML1QWuy7yfp3WzK3lRvZi3JnXTYqrBw==}
- '@vue/compat@3.4.35':
- resolution: {integrity: sha512-Z1OpqfQXWQurtOGxxYZdkgDtgWKxdQ+ZoQZ7MmAENaCFzmX80qRKGh5PVbOFqQTyTXnv0PRk3TqcF5bxddnp+g==}
+ '@vue/compat@3.4.38':
+ resolution: {integrity: sha512-CdX4/3I8hkodU6rG6r8uTi112gsKYVrZcTTEpmG7wP3G1n/lpHKbvl3wBzTc6ClTIqRyHABrYnFyTofiSommQA==}
peerDependencies:
- vue: 3.4.35
+ vue: 3.4.38
'@vue/compiler-core@3.4.35':
resolution: {integrity: sha512-gKp0zGoLnMYtw4uS/SJRRO7rsVggLjvot3mcctlMXunYNsX+aRJDqqw/lV5/gHK91nvaAAlWFgdVl020AW1Prg==}
+ '@vue/compiler-core@3.4.38':
+ resolution: {integrity: sha512-8IQOTCWnLFqfHzOGm9+P8OPSEDukgg3Huc92qSG49if/xI2SAwLHQO2qaPQbjCWPBcQoO1WYfXfTACUrWV3c5A==}
+
'@vue/compiler-dom@3.4.35':
resolution: {integrity: sha512-pWIZRL76/oE/VMhdv/ovZfmuooEni6JPG1BFe7oLk5DZRo/ImydXijoZl/4kh2406boRQ7lxTYzbZEEXEhj9NQ==}
+ '@vue/compiler-dom@3.4.38':
+ resolution: {integrity: sha512-Osc/c7ABsHXTsETLgykcOwIxFktHfGSUDkb05V61rocEfsFDcjDLH/IHJSNJP+/Sv9KeN2Lx1V6McZzlSb9EhQ==}
+
'@vue/compiler-sfc@3.4.35':
resolution: {integrity: sha512-xacnRS/h/FCsjsMfxBkzjoNxyxEyKyZfBch/P4vkLRvYJwe5ChXmZZrj8Dsed/752H2Q3JE8kYu9Uyha9J6PgA==}
+ '@vue/compiler-sfc@3.4.38':
+ resolution: {integrity: sha512-s5QfZ+9PzPh3T5H4hsQDJtI8x7zdJaew/dCGgqZ2630XdzaZ3AD8xGZfBqpT8oaD/p2eedd+pL8tD5vvt5ZYJQ==}
+
'@vue/compiler-ssr@3.4.35':
resolution: {integrity: sha512-7iynB+0KB1AAJKk/biENTV5cRGHRdbdaD7Mx3nWcm1W8bVD6QmnH3B4AHhQQ1qZHhqFwzEzMwiytXm3PX1e60A==}
+ '@vue/compiler-ssr@3.4.38':
+ resolution: {integrity: sha512-YXznKFQ8dxYpAz9zLuVvfcXhc31FSPFDcqr0kyujbOwNhlmaNvL2QfIy+RZeJgSn5Fk54CWoEUeW+NVBAogGaw==}
+
'@vue/devtools-api@6.6.3':
resolution: {integrity: sha512-0MiMsFma/HqA6g3KLKn+AGpL1kgKhFWszC9U29NfpWK5LE7bjeXxySWJrOJ77hBz+TBrBQ7o4QJqbPbqbs8rJw==}
@@ -3061,23 +3013,43 @@ packages:
'@vue/reactivity@3.4.35':
resolution: {integrity: sha512-Ggtz7ZZHakriKioveJtPlStYardwQH6VCs9V13/4qjHSQb/teE30LVJNrbBVs4+aoYGtTQKJbTe4CWGxVZrvEw==}
+ '@vue/reactivity@3.4.38':
+ resolution: {integrity: sha512-4vl4wMMVniLsSYYeldAKzbk72+D3hUnkw9z8lDeJacTxAkXeDAP1uE9xr2+aKIN0ipOL8EG2GPouVTH6yF7Gnw==}
+
'@vue/runtime-core@3.4.35':
resolution: {integrity: sha512-D+BAjFoWwT5wtITpSxwqfWZiBClhBbR+bm0VQlWYFOadUUXFo+5wbe9ErXhLvwguPiLZdEF13QAWi2vP3ZD5tA==}
+ '@vue/runtime-core@3.4.38':
+ resolution: {integrity: sha512-21z3wA99EABtuf+O3IhdxP0iHgkBs1vuoCAsCKLVJPEjpVqvblwBnTj42vzHRlWDCyxu9ptDm7sI2ZMcWrQqlA==}
+
'@vue/runtime-dom@3.4.35':
resolution: {integrity: sha512-yGOlbos+MVhlS5NWBF2HDNgblG8e2MY3+GigHEyR/dREAluvI5tuUUgie3/9XeqhPE4LF0i2wjlduh5thnfOqw==}
+ '@vue/runtime-dom@3.4.38':
+ resolution: {integrity: sha512-afZzmUreU7vKwKsV17H1NDThEEmdYI+GCAK/KY1U957Ig2NATPVjCROv61R19fjZNzMmiU03n79OMnXyJVN0UA==}
+
'@vue/server-renderer@3.4.35':
resolution: {integrity: sha512-iZ0e/u9mRE4T8tNhlo0tbA+gzVkgv8r5BX6s1kRbOZqfpq14qoIvCZ5gIgraOmYkMYrSEZgkkojFPr+Nyq/Mnw==}
peerDependencies:
vue: 3.4.35
+ '@vue/server-renderer@3.4.38':
+ resolution: {integrity: sha512-NggOTr82FbPEkkUvBm4fTGcwUY8UuTsnWC/L2YZBmvaQ4C4Jl/Ao4HHTB+l7WnFCt5M/dN3l0XLuyjzswGYVCA==}
+ peerDependencies:
+ vue: 3.4.38
+
'@vue/shared@3.4.35':
resolution: {integrity: sha512-hvuhBYYDe+b1G8KHxsQ0diDqDMA8D9laxWZhNAjE83VZb5UDaXl9Xnz7cGdDSyiHM90qqI/CyGMcpBpiDy6VVQ==}
+ '@vue/shared@3.4.38':
+ resolution: {integrity: sha512-q0xCiLkuWWQLzVrecPb0RMsNWyxICOjPrcrwxTUEHb1fsnvni4dcuyG7RT/Ie7VPTvnjzIaWzRMUBsrqNj/hhw==}
+
'@vueuse/core@10.11.0':
resolution: {integrity: sha512-x3sD4Mkm7PJ+pcq3HX8PLPBadXCAlSDR/waK87dz0gQE+qJnaaFhc/dZVfJz+IUYzTMVGum2QlR7ImiJQN4s6g==}
+ '@vueuse/core@10.11.1':
+ resolution: {integrity: sha512-guoy26JQktXPcz+0n3GukWIy/JDNKti9v6VEMu6kV2sYBsWuGiTU8OWdg+ADfUbHg3/3DlqySDe7JmdHrktiww==}
+
'@vueuse/integrations@10.11.0':
resolution: {integrity: sha512-Pp6MtWEIr+NDOccWd8j59Kpjy5YDXogXI61Kb1JxvSfVBO8NzFQkmrKmSZz47i+ZqHnIzxaT38L358yDHTncZg==}
peerDependencies:
@@ -3122,9 +3094,15 @@ packages:
'@vueuse/metadata@10.11.0':
resolution: {integrity: sha512-kQX7l6l8dVWNqlqyN3ePW3KmjCQO3ZMgXuBMddIu83CmucrsBfXlH+JoviYyRBws/yLTQO8g3Pbw+bdIoVm4oQ==}
+ '@vueuse/metadata@10.11.1':
+ resolution: {integrity: sha512-IGa5FXd003Ug1qAZmyE8wF3sJ81xGLSqTqtQ6jaVfkeZ4i5kS2mwQF61yhVqojRnenVew5PldLyRgvdl4YYuSw==}
+
'@vueuse/shared@10.11.0':
resolution: {integrity: sha512-fyNoIXEq3PfX1L3NkNhtVQUSRtqYwJtJg+Bp9rIzculIZWHTkKSysujrOk2J+NrRulLTQH9+3gGSfYLWSEWU1A==}
+ '@vueuse/shared@10.11.1':
+ resolution: {integrity: sha512-LHpC8711VFZlDaYUXEBbFBCQ7GS3dVU9mjOhhMhXP6txTV4EhYQg/KGnQuvt/sPAtoUKq7VVUnL6mVtFoL42sA==}
+
'@wdio/config@7.31.1':
resolution: {integrity: sha512-WAfswbCatwiaDVqy6kfF/5T8/WS/US/SRhBGUFrfBuGMIe+RRoHgy7jURFWSvUIE7CNHj8yvs46fLUcxhXjzcQ==}
engines: {node: '>=12.0.0'}
@@ -3225,8 +3203,8 @@ packages:
'@xtuc/long@4.2.2':
resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==}
- '@zenuml/core@3.24.2':
- resolution: {integrity: sha512-yJKDAe7exo4lFwi0qvMncCyn2zrKrKKHG5f7TbYy/n1wy+/TUUdUvLrY4Qu8EbsIV4bqYyHWIjoTMqdktk+y2A==}
+ '@zenuml/core@3.24.3':
+ resolution: {integrity: sha512-ERWZgvVrgKyjzdJWlpiqzPzFNaNn6K439hX6bE9LZySKGbMq6uacKCmro7tLUGN+w9X/xhbQ+8goGzZtdIdOMQ==}
engines: {node: '>=12.0.0'}
JSONSelect@0.4.0:
@@ -3448,9 +3426,6 @@ packages:
resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==}
engines: {node: '>=8'}
- async@3.2.5:
- resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==}
-
async@3.2.6:
resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==}
@@ -3475,12 +3450,15 @@ packages:
aws-sign2@0.7.0:
resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==}
- aws4@1.13.0:
- resolution: {integrity: sha512-3AungXC4I8kKsS9PuS4JH2nc+0bVY/mjgrephHTIi8fpEeGsTHBUJeosp0Wc1myYMElmD0B3Oc4XL/HVJ4PV2g==}
+ aws4@1.13.1:
+ resolution: {integrity: sha512-u5w79Rd7SU4JaIlA/zFqG+gOiuq25q5VLyZ8E+ijJeILuTxVzZgp2CaGw/UTw6pXYN9XMO9yiqj/nEHmhTG5CA==}
axios@1.7.3:
resolution: {integrity: sha512-Ar7ND9pU99eJ9GpoGQKhKf58GpUOgnzuaB7ueNQ5BMi0p+LZ5oaEnfF999fAArcTIBwXTCHAmGcHOZJaWPq9Nw==}
+ axios@1.7.5:
+ resolution: {integrity: sha512-fZu86yCo+svH3uqJ/yTdQ0QHpQu5oL+/QE+QPSv6BZSkDAoky9vytxp7u5qk83OJFS3kEBcesWni9WTZAv3tSw==}
+
babel-jest@29.7.0:
resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -3900,10 +3878,6 @@ packages:
resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
engines: {node: '>= 12'}
- comment-json@4.2.4:
- resolution: {integrity: sha512-E5AjpSW+O+N5T2GsOQMHLLsJvrYw6G/AFt9GvU6NguEAfzKShh7hRiLtVo6S9KbRpFMGqE5ojo0/hE+sdteWvQ==}
- engines: {node: '>= 6'}
-
comment-json@4.2.5:
resolution: {integrity: sha512-bKw/r35jR3HGt5PEPm1ljsQQGyCrR8sFGNiN5L+ykDHdpO8Smxkrkla9Yi6NkQyUrb8V54PGhfMs6NrIwtxtdw==}
engines: {node: '>= 6'}
@@ -4039,71 +4013,42 @@ packages:
resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==}
engines: {node: '>=8'}
- cspell-config-lib@8.13.1:
- resolution: {integrity: sha512-sXUFOyxvk+qDkoQdFkVEqj1hfQWzMi+tbi6ksiotQaqpm7r+YitZLSgwJjN4xgDO/rTLyP70k9fagdZ67MVZbw==}
- engines: {node: '>=18'}
-
cspell-config-lib@8.13.3:
resolution: {integrity: sha512-dzVdar8Kenwxho0PnUxOxwjUvyFYn6Q9mQAMHcQNXQrvo32bdpoF+oNtWC/5FfrQgUgyl19CVQ607bRigYWoOQ==}
engines: {node: '>=18'}
- cspell-dictionary@8.13.1:
- resolution: {integrity: sha512-Z0T4J4ahOJaHmWq83w24KXGik1zeauO5WvDRyzDyaSgpbA5MN2hN98LvxaIx72g3I+trtRK77XFcKginuME9EA==}
- engines: {node: '>=18'}
-
cspell-dictionary@8.13.3:
resolution: {integrity: sha512-DQ3Tee7LIoy+9Mu52ht32O/MNBZ6i4iUeSTY2sMDDwogno3361BLRyfEjyiYNo3Fqf0Pcnt5MqY2DqIhrF/H/Q==}
engines: {node: '>=18'}
- cspell-gitignore@8.13.1:
- resolution: {integrity: sha512-XyZ3X5d6x0gkWtNXSAQRcPMG41bEdLx9cTgZCYCJhEZCesU1VpNm60F3oc11dMLkO+BqPH3An+AO/YEIiaje3A==}
+ cspell-gitignore@8.13.3:
+ resolution: {integrity: sha512-0OZXuP33CXV4P95ySHGNqhq3VR5RaLwpyo0nGvLHOjPm3mCsQSjURLBKHvyQ3r2M7LWsGV1Xc81FfTx30FBZLg==}
engines: {node: '>=18'}
hasBin: true
- cspell-glob@8.13.1:
- resolution: {integrity: sha512-rW1A3t7YvPXxcC4z1pp1m9coeWzUVUmRjUw3vMNGlEDC2zecB39KKbEqesziBqnBceNAY7O5itllIGFKr03vqA==}
- engines: {node: '>=18'}
-
cspell-glob@8.13.3:
resolution: {integrity: sha512-+jGIMYyKDLmoOJIxNPXRdI7utcvw+9FMSmj1ApIdEff5dCkehi0gtzK4H7orXGYEvRdKQvfaXiyduVi79rXsZQ==}
engines: {node: '>=18'}
- cspell-grammar@8.13.1:
- resolution: {integrity: sha512-HUkd24bulvBwee1UNBurxGlPUOiywb9pB34iXXoxFWuloHohZ/DuFlE8B/31ZtjW48ffEYIu3QZfWhcnD8e81w==}
- engines: {node: '>=18'}
- hasBin: true
-
cspell-grammar@8.13.3:
resolution: {integrity: sha512-xPSgKk9HY5EsI8lkMPC9hiZCeAUs+RY/IVliUBW1xEicAJhP4RZIGRdIwtDNNJGwKfNXazjqYhcS4LS0q7xPAQ==}
engines: {node: '>=18'}
hasBin: true
- cspell-io@8.13.1:
- resolution: {integrity: sha512-t2sgZuWGBzPSOAStfvz/U3KoFEfDxEt1cXZj0Kd0Vs36v2uoLktm6ihMe7XNFu7zIdOFSajsYQ8Bi4RSLPGPxQ==}
- engines: {node: '>=18'}
-
cspell-io@8.13.3:
resolution: {integrity: sha512-AeMIkz7+4VuJaPKO/v1pUpyUSOOTyLOAfzeTRRAXEt+KRKOUe36MyUmBMza6gzNcX2yD04VgJukRL408TY9ntw==}
engines: {node: '>=18'}
- cspell-lib@8.13.1:
- resolution: {integrity: sha512-H1HHG1pmATSeAaY0KmQ0xnkbSqJLvh9QpXWARDLWKUBvtE+/l44H4yVhIp/No3rM7PKMmb82GuSJzMaoIhHFLQ==}
- engines: {node: '>=18'}
-
cspell-lib@8.13.3:
resolution: {integrity: sha512-aEqxIILeqDtNoCa47/oSl5c926b50ue3PobYs4usn0Ymf0434RopCP+DCGsF7BPtog4j4XWnEmvkcJs57DYWDg==}
engines: {node: '>=18'}
- cspell-trie-lib@8.13.1:
- resolution: {integrity: sha512-2moCsIYDmMT7hp5Non3CvWatfXptFWCuxjbXQGDNvWJ2Cj3oso/oBe4802GJv5GEenv9QBWmEtum/E7rFcx4JA==}
- engines: {node: '>=18'}
-
cspell-trie-lib@8.13.3:
resolution: {integrity: sha512-Z0iLGi9HI+Vf+WhVVeru6dYgQdtaYCKWRlc1SayLfAZhw9BcjrXL8KTXDfAfv/lUgnRu6xwP1isLlDNZECsKVQ==}
engines: {node: '>=18'}
- cspell@8.13.1:
- resolution: {integrity: sha512-Bqppilpwx9xt3jZPaYcqe1JPteNmfKhx9pw9YglZEePDUzdiJQNVIfs31589GAnXjgdqqctR8N87ffLcaBNPXw==}
+ cspell@8.13.3:
+ resolution: {integrity: sha512-2wv4Eby7g8wDB553fI8IoZjyitoKrD2kmtdeoYUN2EjVs3RMpIOver3fL+0VaFAaN0uLfAoeAAIB5xJEakvZYQ==}
engines: {node: '>=18'}
hasBin: true
@@ -4140,8 +4085,8 @@ packages:
cypress-wait-until@3.0.2:
resolution: {integrity: sha512-iemies796dD5CgjG5kV0MnpEmKSH+s7O83ZoJLVzuVbZmm4lheMsZqAVT73hlMx4QlkwhxbyUzhOBUOZwoOe0w==}
- cypress@13.13.2:
- resolution: {integrity: sha512-PvJQU33933NvS1StfzEb8/mu2kMy4dABwCF+yd5Bi7Qly1HOVf+Bufrygee/tlmty/6j5lX+KIi8j9Q3JUMbhA==}
+ cypress@13.13.3:
+ resolution: {integrity: sha512-hUxPrdbJXhUOTzuML+y9Av7CKoYznbD83pt8g3klgpioEha0emfx4WNIuVRx0C76r0xV2MIwAW9WYiXfVJYFQw==}
engines: {node: ^16.0.0 || ^18.0.0 || >=20.0.0}
hasBin: true
@@ -4150,8 +4095,8 @@ packages:
peerDependencies:
cytoscape: ^3.2.0
- cytoscape@3.30.1:
- resolution: {integrity: sha512-TRJc3HbBPkHd50u9YfJh2FxD1lDLZ+JXnJoyBn5LkncoeuT7fapO/Hq/Ed8TdFclaKshzInge2i30bg7VKeoPQ==}
+ cytoscape@3.30.2:
+ resolution: {integrity: sha512-oICxQsjW8uSaRmn4UK/jkczKOqTrVqt5/1WL0POiJUT2EKNc9STM4hYFHv917yu55aTBMFNRzymlJhVAiWPCxw==}
engines: {node: '>=0.10'}
d3-array@2.12.1:
@@ -4334,6 +4279,9 @@ packages:
dayjs@1.11.12:
resolution: {integrity: sha512-Rt2g+nTbLlDWZTwwrIXjy9MeiZmSDI375FvZs72ngxx8PDC6YXOeR3q5LAuPzjZQxhiWdRKac7RKV+YyQYfYIg==}
+ dayjs@1.11.13:
+ resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==}
+
debug@2.6.9:
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
peerDependencies:
@@ -4368,15 +4316,6 @@ packages:
supports-color:
optional: true
- debug@4.3.5:
- resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==}
- engines: {node: '>=6.0'}
- peerDependencies:
- supports-color: '*'
- peerDependenciesMeta:
- supports-color:
- optional: true
-
debug@4.3.6:
resolution: {integrity: sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==}
engines: {node: '>=6.0'}
@@ -5498,8 +5437,8 @@ packages:
resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==}
engines: {node: '>=16.17.0'}
- husky@9.1.4:
- resolution: {integrity: sha512-bho94YyReb4JV7LYWRWxZ/xr6TtOTt8cMfmQ39MQYJ7f/YE268s3GdghGwi+y4zAeqewE5zYLvuhV0M0ijsDEA==}
+ husky@9.1.5:
+ resolution: {integrity: sha512-rowAVRUBfI0b4+niA4SJMhfQwc107VLkBUgEYYAOQAbqDCnra1nYh83hF/MDmhYs9t9n1E3DuKOrs2LYNC+0Ag==}
engines: {node: '>=18'}
hasBin: true
@@ -6045,8 +5984,8 @@ packages:
resolution: {integrity: sha512-YtOli5Cmzy3q4dP26GraSOeAhqecewG04hoO8DY56CH4KJ9Fvv5qKWUCCo3HZob7esJQHCv6/+bnTy72xZZaVQ==}
engines: {node: '>=12.0.0'}
- jsdom@24.1.1:
- resolution: {integrity: sha512-5O1wWV99Jhq4DV7rCLIoZ/UIhyQeDR7wHVyZAHAshbrvZsLs+Xzz7gtwnlJTJDjleiTKh54F4dXrX70vJQTyJQ==}
+ jsdom@24.1.3:
+ resolution: {integrity: sha512-MyL55p3Ut3cXbeBEG7Hcv0mVM8pp8PBNWxRqchZnSfAiES1v1mRnMeFfaHWIPULpwsYfvO+ZmMZz5tGCnjzDUQ==}
engines: {node: '>=18'}
peerDependencies:
canvas: ^2.11.2
@@ -6203,8 +6142,8 @@ packages:
linkify-it@4.0.1:
resolution: {integrity: sha512-C7bfi1UZmoj8+PQx22XyeXCuBlokoyWQL5pWSP+EI6nzRylyThouddufc2c1NDIcP9k5agmN9fLpA7VNJfIiqw==}
- lint-staged@15.2.8:
- resolution: {integrity: sha512-PUWFf2zQzsd9EFU+kM1d7UP+AZDbKFKuj+9JNVTBkhUFhbg4MAt6WfyMMwBfM4lYqd4D2Jwac5iuTu9rVj4zCQ==}
+ lint-staged@15.2.9:
+ resolution: {integrity: sha512-BZAt8Lk3sEnxw7tfxM7jeZlPRuT4M68O0/CwZhhaw6eeWu0Lz5eERE3m386InivXB64fp/mDID452h48tvKlRQ==}
engines: {node: '>=18.12.0'}
hasBin: true
@@ -6544,10 +6483,6 @@ packages:
micromark@4.0.0:
resolution: {integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==}
- micromatch@4.0.7:
- resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==}
- engines: {node: '>=8.6'}
-
micromatch@4.0.8:
resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
engines: {node: '>=8.6'}
@@ -6812,6 +6747,12 @@ packages:
resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
engines: {node: '>=12'}
+ openapi-fetch@0.11.1:
+ resolution: {integrity: sha512-WtDQsrvxjXuCmo6u6WMQPfUaya8cLfL+ZCaXorPo9MMumqlU/Km/SrCXsEcJH234D4iykOkvJ6Q/iWBzK7+3rA==}
+
+ openapi-typescript-helpers@0.0.12:
+ resolution: {integrity: sha512-FO+5kTWO6KDutigamr2MRwciYkAUYhqdctlyVRrQOe2uxif2/O2+GcS07jNnP36AUK6ubSsGu3GeBiYIc6eQzA==}
+
optionator@0.9.4:
resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
engines: {node: '>= 0.8.0'}
@@ -7144,8 +7085,8 @@ packages:
peerDependencies:
postcss: ^8.2.14
- postcss-selector-parser@6.1.1:
- resolution: {integrity: sha512-b4dlw/9V8A71rLIDsSwVmak9z2DuBUB7CA1/wSdelNEzqsjoSPeADTWNO09lpH49Diy3/JIZ2bSPB1dI3LJCHg==}
+ postcss-selector-parser@6.1.2:
+ resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
engines: {node: '>=4'}
postcss-value-parser@4.2.0:
@@ -7155,6 +7096,10 @@ packages:
resolution: {integrity: sha512-YF2kKIUzAofPMpfH6hOi2cGnv/HrUlfucspc7pDyvv7kGdqXrfj8SCl/t8owkEgKEuu8ZcRjSOxFxVLqwChZ2Q==}
engines: {node: ^10 || ^12 || >=14}
+ postcss@8.4.41:
+ resolution: {integrity: sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ==}
+ engines: {node: ^10 || ^12 || >=14}
+
preact@10.23.1:
resolution: {integrity: sha512-O5UdRsNh4vdZaTieWe3XOgSpdMAmkIYBCT3VhQDlKrzyCm8lUYsk0fmVEvoQQifoOjFRTaHZO69ylrzTW2BH+A==}
@@ -7522,8 +7467,8 @@ packages:
safe-regex2@2.0.0:
resolution: {integrity: sha512-PaUSFsUaNNuKwkBijoAPHAK6/eM6VirvyPWlZ7BAQy4D+hCvh4B6lIG+nPdhbFfIbP+gTGBcrdsOaUs0F+ZBOQ==}
- safe-stable-stringify@2.4.3:
- resolution: {integrity: sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==}
+ safe-stable-stringify@2.5.0:
+ resolution: {integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==}
engines: {node: '>=10'}
safer-buffer@2.1.2:
@@ -7614,9 +7559,9 @@ packages:
resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==}
engines: {node: '>=8'}
- sharp@0.33.4:
- resolution: {integrity: sha512-7i/dt5kGl7qR4gwPRD2biwD2/SvBn3O04J77XKFgL2OnZtQw+AG9wnuS/csmu80nPRHLYE9E41fyEiG8nhH6/Q==}
- engines: {libvips: '>=8.15.2', node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ sharp@0.33.5:
+ resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
shebang-command@1.2.0:
resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
@@ -7920,8 +7865,8 @@ packages:
strip-literal@2.1.0:
resolution: {integrity: sha512-Op+UycaUt/8FbN/Z2TWPBLge3jWrP3xj10f3fnYxf052bKuS3EKs1ZQcVGjnEMdsNVAM+plXRdmjrZ/KgG3Skw==}
- stylis@4.3.2:
- resolution: {integrity: sha512-bhtUjWd/z6ltJiQwg0dUfxEJ+W+jdqQd8TbWLWyeIJHlnsqmGLRFFd8e5mA0AZi/zx90smXRlN66YMTcaSFifg==}
+ stylis@4.3.4:
+ resolution: {integrity: sha512-osIBl6BGUmSfDkyH2mB7EFvCJntXDrLhKjHTRj/rK6xLH0yuPrHULDRQzKokSOD4VoorhtKpfcfW1GAntu8now==}
sucrase@3.35.0:
resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==}
@@ -7962,8 +7907,8 @@ packages:
tabbable@6.2.0:
resolution: {integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==}
- tailwindcss@3.4.7:
- resolution: {integrity: sha512-rxWZbe87YJb4OcSopb7up2Ba4U82BoiSGUdoDr3Ydrg9ckxFS/YWsvhN323GMcddgU65QRy7JndC7ahhInhvlQ==}
+ tailwindcss@3.4.10:
+ resolution: {integrity: sha512-KWZkVPm7yJRhdu4SRSl9d4AK2wM3a50UsvgHZO7xY77NQr2V+fIrEuoDGQcbvswWvFGbS2f6e+jC/6WJm1Dl0w==}
engines: {node: '>=14.0.0'}
hasBin: true
@@ -8260,6 +8205,9 @@ packages:
undici-types@5.26.5:
resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
+ undici-types@6.19.8:
+ resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==}
+
unicode-canonical-property-names-ecmascript@2.0.0:
resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==}
engines: {node: '>=4'}
@@ -8558,6 +8506,14 @@ packages:
typescript:
optional: true
+ vue@3.4.38:
+ resolution: {integrity: sha512-f0ZgN+mZ5KFgVv9wz0f4OgVKukoXtS3nwET4c2vLBGQR50aI8G0cqbFtLlX9Yiyg3LFGBitruPHt2PxwTduJEw==}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
vuex@4.1.0:
resolution: {integrity: sha512-hmV6UerDrPcgbSy9ORAtNXDr9M4wlNP4pEFKye4ujJF8oqgFFuxDCdOLS3eNoRTtq5O3hoBDh9Doj1bQMYHRbQ==}
peerDependencies:
@@ -8827,18 +8783,6 @@ packages:
utf-8-validate:
optional: true
- ws@8.5.0:
- resolution: {integrity: sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg==}
- engines: {node: '>=10.0.0'}
- peerDependencies:
- bufferutil: ^4.0.1
- utf-8-validate: ^5.0.2
- peerDependenciesMeta:
- bufferutil:
- optional: true
- utf-8-validate:
- optional: true
-
xdg-basedir@5.1.0:
resolution: {integrity: sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ==}
engines: {node: '>=12'}
@@ -9069,10 +9013,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@applitools/core@4.18.0(encoding@0.1.13)(typescript@5.4.5)':
+ '@applitools/core@4.18.1(encoding@0.1.13)(typescript@5.4.5)':
dependencies:
'@applitools/core-base': 1.16.0
- '@applitools/dom-capture': 11.3.0
+ '@applitools/dom-capture': 11.3.1
'@applitools/dom-snapshot': 4.11.3
'@applitools/driver': 1.18.0
'@applitools/ec-client': 1.9.3(typescript@5.4.5)
@@ -9105,7 +9049,7 @@ snapshots:
mdn-data: 2.1.0
source-map-js: 1.0.1
- '@applitools/dom-capture@11.3.0':
+ '@applitools/dom-capture@11.3.1':
dependencies:
'@applitools/dom-shared': 1.0.15
'@applitools/functional-commons': 1.6.0
@@ -9171,10 +9115,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@applitools/eyes-cypress@3.44.6(encoding@0.1.13)(typescript@5.4.5)':
+ '@applitools/eyes-cypress@3.44.7(encoding@0.1.13)(typescript@5.4.5)':
dependencies:
- '@applitools/core': 4.18.0(encoding@0.1.13)(typescript@5.4.5)
- '@applitools/eyes': 1.22.0(encoding@0.1.13)(typescript@5.4.5)
+ '@applitools/core': 4.18.1(encoding@0.1.13)(typescript@5.4.5)
+ '@applitools/eyes': 1.22.1(encoding@0.1.13)(typescript@5.4.5)
'@applitools/functional-commons': 1.6.0
'@applitools/logger': 2.0.18
'@applitools/utils': 1.7.4
@@ -9182,7 +9126,7 @@ snapshots:
chalk: 3.0.0
semver: 7.6.2
uuid: 8.3.2
- ws: 8.5.0
+ ws: 8.17.1
transitivePeerDependencies:
- bufferutil
- encoding
@@ -9190,9 +9134,9 @@ snapshots:
- typescript
- utf-8-validate
- '@applitools/eyes@1.22.0(encoding@0.1.13)(typescript@5.4.5)':
+ '@applitools/eyes@1.22.1(encoding@0.1.13)(typescript@5.4.5)':
dependencies:
- '@applitools/core': 4.18.0(encoding@0.1.13)(typescript@5.4.5)
+ '@applitools/core': 4.18.1(encoding@0.1.13)(typescript@5.4.5)
'@applitools/logger': 2.0.18
'@applitools/utils': 1.7.4
transitivePeerDependencies:
@@ -9303,31 +9247,36 @@ snapshots:
'@applitools/utils@1.7.4': {}
- '@argos-ci/browser@2.1.2': {}
-
- '@argos-ci/core@2.4.1':
+ '@argos-ci/api-client@0.2.0':
dependencies:
- '@argos-ci/util': 2.1.0
- axios: 1.7.3(debug@4.3.6)
+ openapi-fetch: 0.11.1
+
+ '@argos-ci/browser@2.1.3': {}
+
+ '@argos-ci/core@2.5.0':
+ dependencies:
+ '@argos-ci/api-client': 0.2.0
+ '@argos-ci/util': 2.1.1
+ axios: 1.7.5(debug@4.3.6)
convict: 6.2.4
debug: 4.3.6(supports-color@8.1.1)
fast-glob: 3.3.2
- sharp: 0.33.4
+ sharp: 0.33.5
tmp: 0.2.3
transitivePeerDependencies:
- supports-color
- '@argos-ci/cypress@2.1.1(cypress@13.13.2)':
+ '@argos-ci/cypress@2.1.2(cypress@13.13.3)':
dependencies:
- '@argos-ci/browser': 2.1.2
- '@argos-ci/core': 2.4.1
- '@argos-ci/util': 2.1.0
- cypress: 13.13.2
+ '@argos-ci/browser': 2.1.3
+ '@argos-ci/core': 2.5.0
+ '@argos-ci/util': 2.1.1
+ cypress: 13.13.3
cypress-wait-until: 3.0.2
transitivePeerDependencies:
- supports-color
- '@argos-ci/util@2.1.0': {}
+ '@argos-ci/util@2.1.1': {}
'@babel/code-frame@7.24.7':
dependencies:
@@ -9346,7 +9295,7 @@ snapshots:
'@babel/helper-compilation-targets': 7.25.2
'@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
'@babel/helpers': 7.25.0
- '@babel/parser': 7.25.3
+ '@babel/parser': 7.25.4
'@babel/template': 7.25.0
'@babel/traverse': 7.25.3
'@babel/types': 7.25.2
@@ -9374,7 +9323,7 @@ snapshots:
'@babel/helper-annotate-as-pure@7.24.7':
dependencies:
- '@babel/types': 7.25.2
+ '@babel/types': 7.25.4
'@babel/helper-builder-binary-assignment-operator-visitor@7.24.7':
dependencies:
@@ -9438,7 +9387,7 @@ snapshots:
'@babel/helper-member-expression-to-functions@7.24.8':
dependencies:
'@babel/traverse': 7.25.3
- '@babel/types': 7.25.2
+ '@babel/types': 7.25.4
transitivePeerDependencies:
- supports-color
@@ -9461,7 +9410,7 @@ snapshots:
'@babel/helper-optimise-call-expression@7.24.7':
dependencies:
- '@babel/types': 7.25.2
+ '@babel/types': 7.25.4
'@babel/helper-plugin-utils@7.24.8': {}
@@ -9486,14 +9435,14 @@ snapshots:
'@babel/helper-simple-access@7.24.7':
dependencies:
'@babel/traverse': 7.25.3
- '@babel/types': 7.25.2
+ '@babel/types': 7.25.4
transitivePeerDependencies:
- supports-color
'@babel/helper-skip-transparent-expression-wrappers@7.24.7':
dependencies:
'@babel/traverse': 7.25.3
- '@babel/types': 7.25.2
+ '@babel/types': 7.25.4
transitivePeerDependencies:
- supports-color
@@ -10016,95 +9965,6 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
'@babel/helper-plugin-utils': 7.24.8
- '@babel/preset-env@7.25.3(@babel/core@7.25.2)':
- dependencies:
- '@babel/compat-data': 7.25.4
- '@babel/core': 7.25.2
- '@babel/helper-compilation-targets': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-validator-option': 7.24.8
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.3(@babel/core@7.25.2)
- '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.0(@babel/core@7.25.2)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.0(@babel/core@7.25.2)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.0(@babel/core@7.25.2)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.2)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.2)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.25.2)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.2)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-syntax-import-attributes': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.25.2)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.2)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.2)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.2)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.25.2)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.25.2)
- '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-async-generator-functions': 7.25.4(@babel/core@7.25.2)
- '@babel/plugin-transform-async-to-generator': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-block-scoped-functions': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-block-scoping': 7.25.0(@babel/core@7.25.2)
- '@babel/plugin-transform-class-properties': 7.25.4(@babel/core@7.25.2)
- '@babel/plugin-transform-class-static-block': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-classes': 7.25.4(@babel/core@7.25.2)
- '@babel/plugin-transform-computed-properties': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-destructuring': 7.24.8(@babel/core@7.25.2)
- '@babel/plugin-transform-dotall-regex': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-duplicate-keys': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.0(@babel/core@7.25.2)
- '@babel/plugin-transform-dynamic-import': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-exponentiation-operator': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-export-namespace-from': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-for-of': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-function-name': 7.25.1(@babel/core@7.25.2)
- '@babel/plugin-transform-json-strings': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-literals': 7.25.2(@babel/core@7.25.2)
- '@babel/plugin-transform-logical-assignment-operators': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-member-expression-literals': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-modules-amd': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.25.2)
- '@babel/plugin-transform-modules-systemjs': 7.25.0(@babel/core@7.25.2)
- '@babel/plugin-transform-modules-umd': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-new-target': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-numeric-separator': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-object-super': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-optional-catch-binding': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.25.2)
- '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-private-methods': 7.25.4(@babel/core@7.25.2)
- '@babel/plugin-transform-private-property-in-object': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-property-literals': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-regenerator': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-reserved-words': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-spread': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-sticky-regex': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-typeof-symbol': 7.24.8(@babel/core@7.25.2)
- '@babel/plugin-transform-unicode-escapes': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-unicode-property-regex': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-unicode-sets-regex': 7.25.4(@babel/core@7.25.2)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.25.2)
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.25.2)
- babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.25.2)
- babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.25.2)
- core-js-compat: 3.38.1
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
'@babel/preset-env@7.25.4(@babel/core@7.25.2)':
dependencies:
'@babel/compat-data': 7.25.4
@@ -10225,14 +10085,14 @@ snapshots:
'@babel/template@7.25.0':
dependencies:
'@babel/code-frame': 7.24.7
- '@babel/parser': 7.25.3
+ '@babel/parser': 7.25.4
'@babel/types': 7.25.2
'@babel/traverse@7.25.3':
dependencies:
'@babel/code-frame': 7.24.7
'@babel/generator': 7.25.0
- '@babel/parser': 7.25.3
+ '@babel/parser': 7.25.4
'@babel/template': 7.25.0
'@babel/types': 7.25.2
debug: 4.3.6(supports-color@8.1.1)
@@ -10357,7 +10217,7 @@ snapshots:
'@changesets/types': 6.0.0
'@manypkg/get-packages': 1.1.3
fs-extra: 7.0.1
- micromatch: 4.0.7
+ micromatch: 4.0.8
'@changesets/errors@0.2.0':
dependencies:
@@ -10397,7 +10257,7 @@ snapshots:
'@changesets/types': 6.0.0
'@manypkg/get-packages': 1.1.3
is-subdir: 1.2.0
- micromatch: 4.0.7
+ micromatch: 4.0.8
spawndamnit: 2.0.0
'@changesets/logger@0.1.0':
@@ -10466,61 +10326,6 @@ snapshots:
'@colors/colors@1.5.0':
optional: true
- '@cspell/cspell-bundled-dicts@8.13.1':
- dependencies:
- '@cspell/dict-ada': 4.0.2
- '@cspell/dict-aws': 4.0.3
- '@cspell/dict-bash': 4.1.3
- '@cspell/dict-companies': 3.1.4
- '@cspell/dict-cpp': 5.1.12
- '@cspell/dict-cryptocurrencies': 5.0.0
- '@cspell/dict-csharp': 4.0.2
- '@cspell/dict-css': 4.0.12
- '@cspell/dict-dart': 2.0.3
- '@cspell/dict-django': 4.1.0
- '@cspell/dict-docker': 1.1.7
- '@cspell/dict-dotnet': 5.0.2
- '@cspell/dict-elixir': 4.0.3
- '@cspell/dict-en-common-misspellings': 2.0.4
- '@cspell/dict-en-gb': 1.1.33
- '@cspell/dict-en_us': 4.3.23
- '@cspell/dict-filetypes': 3.0.4
- '@cspell/dict-fonts': 4.0.0
- '@cspell/dict-fsharp': 1.0.1
- '@cspell/dict-fullstack': 3.2.0
- '@cspell/dict-gaming-terms': 1.0.5
- '@cspell/dict-git': 3.0.0
- '@cspell/dict-golang': 6.0.9
- '@cspell/dict-google': 1.0.1
- '@cspell/dict-haskell': 4.0.1
- '@cspell/dict-html': 4.0.5
- '@cspell/dict-html-symbol-entities': 4.0.0
- '@cspell/dict-java': 5.0.7
- '@cspell/dict-julia': 1.0.1
- '@cspell/dict-k8s': 1.0.6
- '@cspell/dict-latex': 4.0.0
- '@cspell/dict-lorem-ipsum': 4.0.0
- '@cspell/dict-lua': 4.0.3
- '@cspell/dict-makefile': 1.0.0
- '@cspell/dict-monkeyc': 1.0.6
- '@cspell/dict-node': 5.0.1
- '@cspell/dict-npm': 5.0.18
- '@cspell/dict-php': 4.0.8
- '@cspell/dict-powershell': 5.0.5
- '@cspell/dict-public-licenses': 2.0.7
- '@cspell/dict-python': 4.2.3
- '@cspell/dict-r': 2.0.1
- '@cspell/dict-ruby': 5.0.2
- '@cspell/dict-rust': 4.0.5
- '@cspell/dict-scala': 5.0.3
- '@cspell/dict-software-terms': 4.0.4
- '@cspell/dict-sql': 2.1.4
- '@cspell/dict-svelte': 1.0.2
- '@cspell/dict-swift': 2.0.1
- '@cspell/dict-terraform': 1.0.0
- '@cspell/dict-typescript': 3.1.6
- '@cspell/dict-vue': 3.0.0
-
'@cspell/cspell-bundled-dicts@8.13.3':
dependencies:
'@cspell/dict-ada': 4.0.2
@@ -10534,7 +10339,7 @@ snapshots:
'@cspell/dict-dart': 2.0.3
'@cspell/dict-django': 4.1.0
'@cspell/dict-docker': 1.1.7
- '@cspell/dict-dotnet': 5.0.3
+ '@cspell/dict-dotnet': 5.0.4
'@cspell/dict-elixir': 4.0.3
'@cspell/dict-en-common-misspellings': 2.0.4
'@cspell/dict-en-gb': 1.1.33
@@ -10560,15 +10365,15 @@ snapshots:
'@cspell/dict-monkeyc': 1.0.6
'@cspell/dict-node': 5.0.1
'@cspell/dict-npm': 5.0.18
- '@cspell/dict-php': 4.0.8
+ '@cspell/dict-php': 4.0.9
'@cspell/dict-powershell': 5.0.5
'@cspell/dict-public-licenses': 2.0.8
'@cspell/dict-python': 4.2.4
'@cspell/dict-r': 2.0.1
- '@cspell/dict-ruby': 5.0.2
+ '@cspell/dict-ruby': 5.0.3
'@cspell/dict-rust': 4.0.5
'@cspell/dict-scala': 5.0.3
- '@cspell/dict-software-terms': 4.0.10
+ '@cspell/dict-software-terms': 4.0.11
'@cspell/dict-sql': 2.1.5
'@cspell/dict-svelte': 1.0.2
'@cspell/dict-swift': 2.0.1
@@ -10576,28 +10381,18 @@ snapshots:
'@cspell/dict-typescript': 3.1.6
'@cspell/dict-vue': 3.0.0
- '@cspell/cspell-json-reporter@8.13.1':
+ '@cspell/cspell-json-reporter@8.13.3':
dependencies:
- '@cspell/cspell-types': 8.13.1
-
- '@cspell/cspell-pipe@8.13.1': {}
+ '@cspell/cspell-types': 8.13.3
'@cspell/cspell-pipe@8.13.3': {}
- '@cspell/cspell-resolver@8.13.1':
- dependencies:
- global-directory: 4.0.1
-
'@cspell/cspell-resolver@8.13.3':
dependencies:
global-directory: 4.0.1
- '@cspell/cspell-service-bus@8.13.1': {}
-
'@cspell/cspell-service-bus@8.13.3': {}
- '@cspell/cspell-types@8.13.1': {}
-
'@cspell/cspell-types@8.13.3': {}
'@cspell/dict-ada@4.0.2': {}
@@ -10608,16 +10403,12 @@ snapshots:
'@cspell/dict-companies@3.1.4': {}
- '@cspell/dict-cpp@5.1.12': {}
-
'@cspell/dict-cpp@5.1.15': {}
'@cspell/dict-cryptocurrencies@5.0.0': {}
'@cspell/dict-csharp@4.0.2': {}
- '@cspell/dict-css@4.0.12': {}
-
'@cspell/dict-css@4.0.13': {}
'@cspell/dict-dart@2.0.3': {}
@@ -10628,9 +10419,7 @@ snapshots:
'@cspell/dict-docker@1.1.7': {}
- '@cspell/dict-dotnet@5.0.2': {}
-
- '@cspell/dict-dotnet@5.0.3': {}
+ '@cspell/dict-dotnet@5.0.4': {}
'@cspell/dict-elixir@4.0.3': {}
@@ -10654,8 +10443,6 @@ snapshots:
'@cspell/dict-golang@6.0.11': {}
- '@cspell/dict-golang@6.0.9': {}
-
'@cspell/dict-google@1.0.1': {}
'@cspell/dict-haskell@4.0.1': {}
@@ -10684,35 +10471,25 @@ snapshots:
'@cspell/dict-npm@5.0.18': {}
- '@cspell/dict-php@4.0.8': {}
+ '@cspell/dict-php@4.0.9': {}
'@cspell/dict-powershell@5.0.5': {}
- '@cspell/dict-public-licenses@2.0.7': {}
-
'@cspell/dict-public-licenses@2.0.8': {}
- '@cspell/dict-python@4.2.3':
- dependencies:
- '@cspell/dict-data-science': 2.0.1
-
'@cspell/dict-python@4.2.4':
dependencies:
'@cspell/dict-data-science': 2.0.1
'@cspell/dict-r@2.0.1': {}
- '@cspell/dict-ruby@5.0.2': {}
+ '@cspell/dict-ruby@5.0.3': {}
'@cspell/dict-rust@4.0.5': {}
'@cspell/dict-scala@5.0.3': {}
- '@cspell/dict-software-terms@4.0.10': {}
-
- '@cspell/dict-software-terms@4.0.4': {}
-
- '@cspell/dict-sql@2.1.4': {}
+ '@cspell/dict-software-terms@4.0.11': {}
'@cspell/dict-sql@2.1.5': {}
@@ -10726,10 +10503,6 @@ snapshots:
'@cspell/dict-vue@3.0.0': {}
- '@cspell/dynamic-import@8.13.1':
- dependencies:
- import-meta-resolve: 4.1.0
-
'@cspell/dynamic-import@8.13.3':
dependencies:
import-meta-resolve: 4.1.0
@@ -10742,24 +10515,20 @@ snapshots:
eslint: 9.8.0
synckit: 0.9.1
- '@cspell/strong-weak-map@8.13.1': {}
-
'@cspell/strong-weak-map@8.13.3': {}
- '@cspell/url@8.13.1': {}
-
'@cspell/url@8.13.3': {}
- '@cypress/code-coverage@3.12.44(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(babel-loader@9.1.3(@babel/core@7.25.2)(webpack@5.93.0(esbuild@0.21.5)))(cypress@13.13.2)(webpack@5.93.0(esbuild@0.21.5))':
+ '@cypress/code-coverage@3.12.45(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(babel-loader@9.1.3(@babel/core@7.25.2)(webpack@5.93.0(esbuild@0.21.5)))(cypress@13.13.3)(webpack@5.93.0(esbuild@0.21.5))':
dependencies:
'@babel/core': 7.25.2
- '@babel/preset-env': 7.25.3(@babel/core@7.25.2)
- '@cypress/webpack-preprocessor': 6.0.2(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(babel-loader@9.1.3(@babel/core@7.25.2)(webpack@5.93.0(esbuild@0.21.5)))(webpack@5.93.0(esbuild@0.21.5))
+ '@babel/preset-env': 7.25.4(@babel/core@7.25.2)
+ '@cypress/webpack-preprocessor': 6.0.2(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(babel-loader@9.1.3(@babel/core@7.25.2)(webpack@5.93.0(esbuild@0.21.5)))(webpack@5.93.0(esbuild@0.21.5))
babel-loader: 9.1.3(@babel/core@7.25.2)(webpack@5.93.0(esbuild@0.21.5))
chalk: 4.1.2
- cypress: 13.13.2
+ cypress: 13.13.3
dayjs: 1.11.12
- debug: 4.3.5
+ debug: 4.3.6(supports-color@8.1.1)
execa: 4.1.0
globby: 11.1.0
istanbul-lib-coverage: 3.2.2
@@ -10772,7 +10541,7 @@ snapshots:
'@cypress/request@3.0.1':
dependencies:
aws-sign2: 0.7.0
- aws4: 1.13.0
+ aws4: 1.13.1
caseless: 0.12.0
combined-stream: 1.0.8
extend: 3.0.2
@@ -10790,13 +10559,13 @@ snapshots:
tunnel-agent: 0.6.0
uuid: 8.3.2
- '@cypress/webpack-preprocessor@6.0.2(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(babel-loader@9.1.3(@babel/core@7.25.2)(webpack@5.93.0(esbuild@0.21.5)))(webpack@5.93.0(esbuild@0.21.5))':
+ '@cypress/webpack-preprocessor@6.0.2(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(babel-loader@9.1.3(@babel/core@7.25.2)(webpack@5.93.0(esbuild@0.21.5)))(webpack@5.93.0(esbuild@0.21.5))':
dependencies:
'@babel/core': 7.25.2
- '@babel/preset-env': 7.25.3(@babel/core@7.25.2)
+ '@babel/preset-env': 7.25.4(@babel/core@7.25.2)
babel-loader: 9.1.3(@babel/core@7.25.2)(webpack@5.93.0(esbuild@0.21.5))
bluebird: 3.7.1
- debug: 4.3.5
+ debug: 4.3.6(supports-color@8.1.1)
lodash: 4.17.21
webpack: 5.93.0(esbuild@0.21.5)
transitivePeerDependencies:
@@ -10954,22 +10723,22 @@ snapshots:
'@fastify/error@2.0.0': {}
- '@floating-ui/core@1.6.5':
+ '@floating-ui/core@1.6.7':
dependencies:
- '@floating-ui/utils': 0.2.5
+ '@floating-ui/utils': 0.2.7
- '@floating-ui/dom@1.6.8':
+ '@floating-ui/dom@1.6.10':
dependencies:
- '@floating-ui/core': 1.6.5
- '@floating-ui/utils': 0.2.5
+ '@floating-ui/core': 1.6.7
+ '@floating-ui/utils': 0.2.7
- '@floating-ui/utils@0.2.5': {}
+ '@floating-ui/utils@0.2.7': {}
- '@floating-ui/vue@1.1.2(vue@3.4.35(typescript@5.4.5))':
+ '@floating-ui/vue@1.1.4(vue@3.4.38(typescript@5.4.5))':
dependencies:
- '@floating-ui/dom': 1.6.8
- '@floating-ui/utils': 0.2.5
- vue-demi: 0.14.10(vue@3.4.35(typescript@5.4.5))
+ '@floating-ui/dom': 1.6.10
+ '@floating-ui/utils': 0.2.7
+ vue-demi: 0.14.10(vue@3.4.38(typescript@5.4.5))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
@@ -10980,24 +10749,24 @@ snapshots:
dependencies:
'@hapi/hoek': 9.3.0
- '@headlessui-float/vue@0.14.0(@headlessui/vue@1.7.22(vue@3.4.35(typescript@5.4.5)))(vue@3.4.35(typescript@5.4.5))':
+ '@headlessui-float/vue@0.14.3(@headlessui/vue@1.7.22(vue@3.4.38(typescript@5.4.5)))(vue@3.4.38(typescript@5.4.5))':
dependencies:
- '@floating-ui/core': 1.6.5
- '@floating-ui/dom': 1.6.8
- '@floating-ui/vue': 1.1.2(vue@3.4.35(typescript@5.4.5))
- '@headlessui/vue': 1.7.22(vue@3.4.35(typescript@5.4.5))
- vue: 3.4.35(typescript@5.4.5)
+ '@floating-ui/core': 1.6.7
+ '@floating-ui/dom': 1.6.10
+ '@floating-ui/vue': 1.1.4(vue@3.4.38(typescript@5.4.5))
+ '@headlessui/vue': 1.7.22(vue@3.4.38(typescript@5.4.5))
+ vue: 3.4.38(typescript@5.4.5)
transitivePeerDependencies:
- '@vue/composition-api'
- '@headlessui/tailwindcss@0.2.1(tailwindcss@3.4.7)':
+ '@headlessui/tailwindcss@0.2.1(tailwindcss@3.4.10)':
dependencies:
- tailwindcss: 3.4.7
+ tailwindcss: 3.4.10
- '@headlessui/vue@1.7.22(vue@3.4.35(typescript@5.4.5))':
+ '@headlessui/vue@1.7.22(vue@3.4.38(typescript@5.4.5))':
dependencies:
- '@tanstack/vue-virtual': 3.8.5(vue@3.4.35(typescript@5.4.5))
- vue: 3.4.35(typescript@5.4.5)
+ '@tanstack/vue-virtual': 3.10.4(vue@3.4.38(typescript@5.4.5))
+ vue: 3.4.38(typescript@5.4.5)
'@humanwhocodes/module-importer@1.0.1': {}
@@ -11021,79 +10790,79 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@img/sharp-darwin-arm64@0.33.4':
+ '@img/sharp-darwin-arm64@0.33.5':
optionalDependencies:
- '@img/sharp-libvips-darwin-arm64': 1.0.2
+ '@img/sharp-libvips-darwin-arm64': 1.0.4
optional: true
- '@img/sharp-darwin-x64@0.33.4':
+ '@img/sharp-darwin-x64@0.33.5':
optionalDependencies:
- '@img/sharp-libvips-darwin-x64': 1.0.2
+ '@img/sharp-libvips-darwin-x64': 1.0.4
optional: true
- '@img/sharp-libvips-darwin-arm64@1.0.2':
+ '@img/sharp-libvips-darwin-arm64@1.0.4':
optional: true
- '@img/sharp-libvips-darwin-x64@1.0.2':
+ '@img/sharp-libvips-darwin-x64@1.0.4':
optional: true
- '@img/sharp-libvips-linux-arm64@1.0.2':
+ '@img/sharp-libvips-linux-arm64@1.0.4':
optional: true
- '@img/sharp-libvips-linux-arm@1.0.2':
+ '@img/sharp-libvips-linux-arm@1.0.5':
optional: true
- '@img/sharp-libvips-linux-s390x@1.0.2':
+ '@img/sharp-libvips-linux-s390x@1.0.4':
optional: true
- '@img/sharp-libvips-linux-x64@1.0.2':
+ '@img/sharp-libvips-linux-x64@1.0.4':
optional: true
- '@img/sharp-libvips-linuxmusl-arm64@1.0.2':
+ '@img/sharp-libvips-linuxmusl-arm64@1.0.4':
optional: true
- '@img/sharp-libvips-linuxmusl-x64@1.0.2':
+ '@img/sharp-libvips-linuxmusl-x64@1.0.4':
optional: true
- '@img/sharp-linux-arm64@0.33.4':
+ '@img/sharp-linux-arm64@0.33.5':
optionalDependencies:
- '@img/sharp-libvips-linux-arm64': 1.0.2
+ '@img/sharp-libvips-linux-arm64': 1.0.4
optional: true
- '@img/sharp-linux-arm@0.33.4':
+ '@img/sharp-linux-arm@0.33.5':
optionalDependencies:
- '@img/sharp-libvips-linux-arm': 1.0.2
+ '@img/sharp-libvips-linux-arm': 1.0.5
optional: true
- '@img/sharp-linux-s390x@0.33.4':
+ '@img/sharp-linux-s390x@0.33.5':
optionalDependencies:
- '@img/sharp-libvips-linux-s390x': 1.0.2
+ '@img/sharp-libvips-linux-s390x': 1.0.4
optional: true
- '@img/sharp-linux-x64@0.33.4':
+ '@img/sharp-linux-x64@0.33.5':
optionalDependencies:
- '@img/sharp-libvips-linux-x64': 1.0.2
+ '@img/sharp-libvips-linux-x64': 1.0.4
optional: true
- '@img/sharp-linuxmusl-arm64@0.33.4':
+ '@img/sharp-linuxmusl-arm64@0.33.5':
optionalDependencies:
- '@img/sharp-libvips-linuxmusl-arm64': 1.0.2
+ '@img/sharp-libvips-linuxmusl-arm64': 1.0.4
optional: true
- '@img/sharp-linuxmusl-x64@0.33.4':
+ '@img/sharp-linuxmusl-x64@0.33.5':
optionalDependencies:
- '@img/sharp-libvips-linuxmusl-x64': 1.0.2
+ '@img/sharp-libvips-linuxmusl-x64': 1.0.4
optional: true
- '@img/sharp-wasm32@0.33.4':
+ '@img/sharp-wasm32@0.33.5':
dependencies:
'@emnapi/runtime': 1.2.0
optional: true
- '@img/sharp-win32-ia32@0.33.4':
+ '@img/sharp-win32-ia32@0.33.5':
optional: true
- '@img/sharp-win32-x64@0.33.4':
+ '@img/sharp-win32-x64@0.33.5':
optional: true
'@isaacs/cliui@8.0.2':
@@ -11118,7 +10887,7 @@ snapshots:
'@jest/console@29.7.0':
dependencies:
'@jest/types': 29.6.3
- '@types/node': 20.14.14
+ '@types/node': 20.14.15
chalk: 4.1.2
jest-message-util: 29.7.0
jest-util: 29.7.0
@@ -11131,14 +10900,14 @@ snapshots:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.14.14
+ '@types/node': 20.14.15
ansi-escapes: 4.3.2
chalk: 4.1.2
ci-info: 3.9.0
exit: 0.1.2
graceful-fs: 4.2.11
jest-changed-files: 29.7.0
- jest-config: 29.7.0(@types/node@20.14.14)
+ jest-config: 29.7.0(@types/node@20.14.15)
jest-haste-map: 29.7.0
jest-message-util: 29.7.0
jest-regex-util: 29.6.3
@@ -11150,7 +10919,7 @@ snapshots:
jest-util: 29.7.0
jest-validate: 29.7.0
jest-watcher: 29.7.0
- micromatch: 4.0.7
+ micromatch: 4.0.8
pretty-format: 29.7.0
slash: 3.0.0
strip-ansi: 6.0.1
@@ -11163,7 +10932,7 @@ snapshots:
dependencies:
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.14.14
+ '@types/node': 20.14.15
jest-mock: 29.7.0
'@jest/expect-utils@29.7.0':
@@ -11181,7 +10950,7 @@ snapshots:
dependencies:
'@jest/types': 29.6.3
'@sinonjs/fake-timers': 10.3.0
- '@types/node': 20.14.14
+ '@types/node': 20.14.15
jest-message-util: 29.7.0
jest-mock: 29.7.0
jest-util: 29.7.0
@@ -11203,7 +10972,7 @@ snapshots:
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
'@jridgewell/trace-mapping': 0.3.25
- '@types/node': 20.14.14
+ '@types/node': 20.14.15
chalk: 4.1.2
collect-v8-coverage: 1.0.2
exit: 0.1.2
@@ -11261,7 +11030,7 @@ snapshots:
jest-haste-map: 29.7.0
jest-regex-util: 29.6.3
jest-util: 29.7.0
- micromatch: 4.0.7
+ micromatch: 4.0.8
pirates: 4.0.6
slash: 3.0.0
write-file-atomic: 4.0.2
@@ -11273,7 +11042,7 @@ snapshots:
'@jest/schemas': 29.6.3
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 20.14.14
+ '@types/node': 20.14.15
'@types/yargs': 17.0.32
chalk: 4.1.2
@@ -11506,12 +11275,12 @@ snapshots:
dependencies:
defer-to-connect: 2.0.1
- '@tanstack/virtual-core@3.8.4': {}
+ '@tanstack/virtual-core@3.10.4': {}
- '@tanstack/vue-virtual@3.8.5(vue@3.4.35(typescript@5.4.5))':
+ '@tanstack/vue-virtual@3.10.4(vue@3.4.38(typescript@5.4.5))':
dependencies:
- '@tanstack/virtual-core': 3.8.4
- vue: 3.4.35(typescript@5.4.5)
+ '@tanstack/virtual-core': 3.10.4
+ vue: 3.4.38(typescript@5.4.5)
'@tootallnate/once@2.0.0': {}
@@ -11519,33 +11288,33 @@ snapshots:
'@types/babel__core@7.20.5':
dependencies:
- '@babel/parser': 7.25.3
- '@babel/types': 7.25.2
+ '@babel/parser': 7.25.4
+ '@babel/types': 7.25.4
'@types/babel__generator': 7.6.8
'@types/babel__template': 7.4.4
'@types/babel__traverse': 7.20.6
'@types/babel__generator@7.6.8':
dependencies:
- '@babel/types': 7.25.2
+ '@babel/types': 7.25.4
'@types/babel__template@7.4.4':
dependencies:
- '@babel/parser': 7.25.3
- '@babel/types': 7.25.2
+ '@babel/parser': 7.25.4
+ '@babel/types': 7.25.4
'@types/babel__traverse@7.20.6':
dependencies:
- '@babel/types': 7.25.2
+ '@babel/types': 7.25.4
'@types/body-parser@1.19.5':
dependencies:
'@types/connect': 3.4.38
- '@types/node': 20.14.14
+ '@types/node': 20.14.15
'@types/bonjour@3.5.13':
dependencies:
- '@types/node': 20.14.14
+ '@types/node': 22.5.0
'@types/braces@3.0.4': {}
@@ -11553,23 +11322,23 @@ snapshots:
dependencies:
'@types/http-cache-semantics': 4.0.4
'@types/keyv': 3.1.4
- '@types/node': 20.14.14
+ '@types/node': 20.14.15
'@types/responselike': 1.0.3
'@types/connect-history-api-fallback@1.5.4':
dependencies:
'@types/express-serve-static-core': 4.19.5
- '@types/node': 20.14.14
+ '@types/node': 22.5.0
'@types/connect@3.4.38':
dependencies:
- '@types/node': 20.14.14
+ '@types/node': 20.14.15
'@types/cors@2.8.17':
dependencies:
- '@types/node': 20.14.14
+ '@types/node': 20.14.15
- '@types/cytoscape@3.21.5': {}
+ '@types/cytoscape@3.21.7': {}
'@types/d3-array@3.2.1': {}
@@ -11722,7 +11491,7 @@ snapshots:
'@types/express-serve-static-core@4.19.5':
dependencies:
- '@types/node': 20.14.14
+ '@types/node': 20.14.15
'@types/qs': 6.9.15
'@types/range-parser': 1.2.7
'@types/send': 0.17.4
@@ -11741,16 +11510,16 @@ snapshots:
'@types/glob@7.2.0':
dependencies:
'@types/minimatch': 5.1.2
- '@types/node': 20.14.14
+ '@types/node': 22.5.0
'@types/glob@8.1.0':
dependencies:
'@types/minimatch': 5.1.2
- '@types/node': 20.14.14
+ '@types/node': 20.14.15
'@types/graceful-fs@4.1.9':
dependencies:
- '@types/node': 20.14.14
+ '@types/node': 20.14.15
'@types/hast@3.0.4':
dependencies:
@@ -11762,7 +11531,7 @@ snapshots:
'@types/http-proxy@1.17.14':
dependencies:
- '@types/node': 20.14.14
+ '@types/node': 22.5.0
'@types/istanbul-lib-coverage@2.0.6': {}
@@ -11788,7 +11557,7 @@ snapshots:
'@types/keyv@3.1.4':
dependencies:
- '@types/node': 20.14.14
+ '@types/node': 20.14.15
'@types/linkify-it@5.0.0': {}
@@ -11830,11 +11599,11 @@ snapshots:
'@types/node-forge@1.3.11':
dependencies:
- '@types/node': 20.14.14
+ '@types/node': 22.5.0
'@types/node@12.20.55': {}
- '@types/node@18.19.43':
+ '@types/node@18.19.45':
dependencies:
undici-types: 5.26.5
@@ -11842,6 +11611,14 @@ snapshots:
dependencies:
undici-types: 5.26.5
+ '@types/node@20.14.15':
+ dependencies:
+ undici-types: 5.26.5
+
+ '@types/node@22.5.0':
+ dependencies:
+ undici-types: 6.19.8
+
'@types/normalize-package-data@2.4.4': {}
'@types/prettier@2.7.3': {}
@@ -11862,7 +11639,7 @@ snapshots:
'@types/responselike@1.0.3':
dependencies:
- '@types/node': 20.14.14
+ '@types/node': 20.14.15
'@types/retry@0.12.0': {}
@@ -11875,7 +11652,7 @@ snapshots:
'@types/send@0.17.4':
dependencies:
'@types/mime': 1.3.5
- '@types/node': 20.14.14
+ '@types/node': 22.5.0
'@types/serve-index@1.9.4':
dependencies:
@@ -11884,7 +11661,7 @@ snapshots:
'@types/serve-static@1.15.7':
dependencies:
'@types/http-errors': 2.0.4
- '@types/node': 20.14.14
+ '@types/node': 22.5.0
'@types/send': 0.17.4
'@types/sinonjs__fake-timers@8.1.1': {}
@@ -11893,7 +11670,7 @@ snapshots:
'@types/sockjs@0.3.36':
dependencies:
- '@types/node': 20.14.14
+ '@types/node': 22.5.0
'@types/stack-utils@2.0.3': {}
@@ -11913,11 +11690,11 @@ snapshots:
'@types/ws@8.5.12':
dependencies:
- '@types/node': 20.14.14
+ '@types/node': 22.5.0
'@types/ws@8.5.5':
dependencies:
- '@types/node': 20.14.14
+ '@types/node': 20.14.15
'@types/yargs-parser@21.0.3': {}
@@ -11927,7 +11704,7 @@ snapshots:
'@types/yauzl@2.10.3':
dependencies:
- '@types/node': 20.14.14
+ '@types/node': 20.14.15
optional: true
'@typescript-eslint/eslint-plugin@8.0.1(@typescript-eslint/parser@8.0.1(eslint@9.8.0)(typescript@5.4.5))(eslint@9.8.0)(typescript@5.4.5)':
@@ -12049,13 +11826,13 @@ snapshots:
'@typescript-eslint/types': 8.0.1
eslint-visitor-keys: 3.4.3
- '@unocss/astro@0.59.4(rollup@2.79.1)(vite@5.3.5(@types/node@20.14.14)(terser@5.31.6))':
+ '@unocss/astro@0.59.4(rollup@2.79.1)(vite@5.3.5(@types/node@22.5.0)(terser@5.31.6))':
dependencies:
'@unocss/core': 0.59.4
'@unocss/reset': 0.59.4
- '@unocss/vite': 0.59.4(rollup@2.79.1)(vite@5.3.5(@types/node@20.14.14)(terser@5.31.6))
+ '@unocss/vite': 0.59.4(rollup@2.79.1)(vite@5.3.5(@types/node@22.5.0)(terser@5.31.6))
optionalDependencies:
- vite: 5.3.5(@types/node@20.14.14)(terser@5.31.6)
+ vite: 5.3.5(@types/node@22.5.0)(terser@5.31.6)
transitivePeerDependencies:
- rollup
@@ -12095,7 +11872,7 @@ snapshots:
gzip-size: 6.0.0
sirv: 2.0.4
- '@unocss/postcss@0.59.4(postcss@8.4.40)':
+ '@unocss/postcss@0.59.4(postcss@8.4.41)':
dependencies:
'@unocss/config': 0.59.4
'@unocss/core': 0.59.4
@@ -12103,7 +11880,7 @@ snapshots:
css-tree: 2.3.1
fast-glob: 3.3.2
magic-string: 0.30.11
- postcss: 8.4.40
+ postcss: 8.4.41
'@unocss/preset-attributify@0.59.4':
dependencies:
@@ -12186,7 +11963,7 @@ snapshots:
dependencies:
'@unocss/core': 0.59.4
- '@unocss/vite@0.59.4(rollup@2.79.1)(vite@5.3.5(@types/node@20.14.14)(terser@5.31.6))':
+ '@unocss/vite@0.59.4(rollup@2.79.1)(vite@5.3.5(@types/node@22.5.0)(terser@5.31.6))':
dependencies:
'@ampproject/remapping': 2.3.0
'@rollup/pluginutils': 5.1.0(rollup@2.79.1)
@@ -12198,20 +11975,25 @@ snapshots:
chokidar: 3.6.0
fast-glob: 3.3.2
magic-string: 0.30.11
- vite: 5.3.5(@types/node@20.14.14)(terser@5.31.6)
+ vite: 5.3.5(@types/node@22.5.0)(terser@5.31.6)
transitivePeerDependencies:
- rollup
- '@vite-pwa/vitepress@0.4.0(vite-plugin-pwa@0.19.8(vite@5.3.5(@types/node@20.14.14)(terser@5.31.6))(workbox-build@7.1.1(@types/babel__core@7.20.5))(workbox-window@7.1.0))':
+ '@vite-pwa/vitepress@0.4.0(vite-plugin-pwa@0.19.8(vite@5.3.5(@types/node@22.5.0)(terser@5.31.6))(workbox-build@7.1.1(@types/babel__core@7.20.5))(workbox-window@7.1.0))':
dependencies:
- vite-plugin-pwa: 0.19.8(vite@5.3.5(@types/node@20.14.14)(terser@5.31.6))(workbox-build@7.1.1(@types/babel__core@7.20.5))(workbox-window@7.1.0)
+ vite-plugin-pwa: 0.19.8(vite@5.3.5(@types/node@22.5.0)(terser@5.31.6))(workbox-build@7.1.1(@types/babel__core@7.20.5))(workbox-window@7.1.0)
- '@vitejs/plugin-vue@5.1.2(vite@5.3.5(@types/node@20.14.14)(terser@5.31.6))(vue@3.4.35(typescript@5.4.5))':
+ '@vitejs/plugin-vue@5.1.2(vite@5.3.5(@types/node@22.5.0)(terser@5.31.6))(vue@3.4.35(typescript@5.4.5))':
dependencies:
- vite: 5.3.5(@types/node@20.14.14)(terser@5.31.6)
+ vite: 5.3.5(@types/node@22.5.0)(terser@5.31.6)
vue: 3.4.35(typescript@5.4.5)
- '@vitest/coverage-v8@1.6.0(vitest@1.6.0(@types/node@20.14.14)(@vitest/ui@1.6.0)(jsdom@24.1.1)(terser@5.31.6))':
+ '@vitejs/plugin-vue@5.1.2(vite@5.3.5(@types/node@22.5.0)(terser@5.31.6))(vue@3.4.38(typescript@5.4.5))':
+ dependencies:
+ vite: 5.3.5(@types/node@22.5.0)(terser@5.31.6)
+ vue: 3.4.38(typescript@5.4.5)
+
+ '@vitest/coverage-v8@1.6.0(vitest@1.6.0(@types/node@20.14.15)(@vitest/ui@1.6.0)(jsdom@24.1.3)(terser@5.31.6))':
dependencies:
'@ampproject/remapping': 2.3.0
'@bcoe/v8-coverage': 0.2.3
@@ -12226,7 +12008,7 @@ snapshots:
std-env: 3.7.0
strip-literal: 2.1.0
test-exclude: 6.0.0
- vitest: 1.6.0(@types/node@20.14.14)(@vitest/ui@1.6.0)(jsdom@24.1.1)(terser@5.31.6)
+ vitest: 1.6.0(@types/node@20.14.15)(@vitest/ui@1.6.0)(jsdom@24.1.3)(terser@5.31.6)
transitivePeerDependencies:
- supports-color
@@ -12261,7 +12043,7 @@ snapshots:
pathe: 1.1.2
picocolors: 1.0.1
sirv: 2.0.4
- vitest: 1.6.0(@types/node@20.14.14)(@vitest/ui@1.6.0)(jsdom@24.1.1)(terser@5.31.6)
+ vitest: 1.6.0(@types/node@20.14.15)(@vitest/ui@1.6.0)(jsdom@24.1.3)(terser@5.31.6)
'@vitest/utils@1.6.0':
dependencies:
@@ -12270,26 +12052,39 @@ snapshots:
loupe: 2.3.7
pretty-format: 29.7.0
- '@vue/compat@3.4.35(vue@3.4.35(typescript@5.4.5))':
+ '@vue/compat@3.4.38(vue@3.4.38(typescript@5.4.5))':
dependencies:
- '@babel/parser': 7.25.3
+ '@babel/parser': 7.25.4
estree-walker: 2.0.2
source-map-js: 1.2.0
- vue: 3.4.35(typescript@5.4.5)
+ vue: 3.4.38(typescript@5.4.5)
'@vue/compiler-core@3.4.35':
dependencies:
- '@babel/parser': 7.25.3
+ '@babel/parser': 7.25.4
'@vue/shared': 3.4.35
entities: 4.5.0
estree-walker: 2.0.2
source-map-js: 1.2.0
+ '@vue/compiler-core@3.4.38':
+ dependencies:
+ '@babel/parser': 7.25.4
+ '@vue/shared': 3.4.38
+ entities: 4.5.0
+ estree-walker: 2.0.2
+ source-map-js: 1.2.0
+
'@vue/compiler-dom@3.4.35':
dependencies:
'@vue/compiler-core': 3.4.35
'@vue/shared': 3.4.35
+ '@vue/compiler-dom@3.4.38':
+ dependencies:
+ '@vue/compiler-core': 3.4.38
+ '@vue/shared': 3.4.38
+
'@vue/compiler-sfc@3.4.35':
dependencies:
'@babel/parser': 7.25.3
@@ -12299,7 +12094,19 @@ snapshots:
'@vue/shared': 3.4.35
estree-walker: 2.0.2
magic-string: 0.30.11
- postcss: 8.4.40
+ postcss: 8.4.41
+ source-map-js: 1.2.0
+
+ '@vue/compiler-sfc@3.4.38':
+ dependencies:
+ '@babel/parser': 7.25.4
+ '@vue/compiler-core': 3.4.38
+ '@vue/compiler-dom': 3.4.38
+ '@vue/compiler-ssr': 3.4.38
+ '@vue/shared': 3.4.38
+ estree-walker: 2.0.2
+ magic-string: 0.30.11
+ postcss: 8.4.41
source-map-js: 1.2.0
'@vue/compiler-ssr@3.4.35':
@@ -12307,6 +12114,11 @@ snapshots:
'@vue/compiler-dom': 3.4.35
'@vue/shared': 3.4.35
+ '@vue/compiler-ssr@3.4.38':
+ dependencies:
+ '@vue/compiler-dom': 3.4.38
+ '@vue/shared': 3.4.38
+
'@vue/devtools-api@6.6.3': {}
'@vue/devtools-api@7.3.7':
@@ -12331,11 +12143,20 @@ snapshots:
dependencies:
'@vue/shared': 3.4.35
+ '@vue/reactivity@3.4.38':
+ dependencies:
+ '@vue/shared': 3.4.38
+
'@vue/runtime-core@3.4.35':
dependencies:
'@vue/reactivity': 3.4.35
'@vue/shared': 3.4.35
+ '@vue/runtime-core@3.4.38':
+ dependencies:
+ '@vue/reactivity': 3.4.38
+ '@vue/shared': 3.4.38
+
'@vue/runtime-dom@3.4.35':
dependencies:
'@vue/reactivity': 3.4.35
@@ -12343,14 +12164,29 @@ snapshots:
'@vue/shared': 3.4.35
csstype: 3.1.3
+ '@vue/runtime-dom@3.4.38':
+ dependencies:
+ '@vue/reactivity': 3.4.38
+ '@vue/runtime-core': 3.4.38
+ '@vue/shared': 3.4.38
+ csstype: 3.1.3
+
'@vue/server-renderer@3.4.35(vue@3.4.35(typescript@5.4.5))':
dependencies:
'@vue/compiler-ssr': 3.4.35
'@vue/shared': 3.4.35
vue: 3.4.35(typescript@5.4.5)
+ '@vue/server-renderer@3.4.38(vue@3.4.38(typescript@5.4.5))':
+ dependencies:
+ '@vue/compiler-ssr': 3.4.38
+ '@vue/shared': 3.4.38
+ vue: 3.4.38(typescript@5.4.5)
+
'@vue/shared@3.4.35': {}
+ '@vue/shared@3.4.38': {}
+
'@vueuse/core@10.11.0(vue@3.4.35(typescript@5.4.5))':
dependencies:
'@types/web-bluetooth': 0.0.20
@@ -12361,13 +12197,23 @@ snapshots:
- '@vue/composition-api'
- vue
- '@vueuse/integrations@10.11.0(axios@1.7.3)(focus-trap@7.5.4)(vue@3.4.35(typescript@5.4.5))':
+ '@vueuse/core@10.11.1(vue@3.4.38(typescript@5.4.5))':
+ dependencies:
+ '@types/web-bluetooth': 0.0.20
+ '@vueuse/metadata': 10.11.1
+ '@vueuse/shared': 10.11.1(vue@3.4.38(typescript@5.4.5))
+ vue-demi: 0.14.10(vue@3.4.38(typescript@5.4.5))
+ transitivePeerDependencies:
+ - '@vue/composition-api'
+ - vue
+
+ '@vueuse/integrations@10.11.0(axios@1.7.5)(focus-trap@7.5.4)(vue@3.4.35(typescript@5.4.5))':
dependencies:
'@vueuse/core': 10.11.0(vue@3.4.35(typescript@5.4.5))
'@vueuse/shared': 10.11.0(vue@3.4.35(typescript@5.4.5))
vue-demi: 0.14.10(vue@3.4.35(typescript@5.4.5))
optionalDependencies:
- axios: 1.7.3(debug@4.3.6)
+ axios: 1.7.5(debug@4.3.6)
focus-trap: 7.5.4
transitivePeerDependencies:
- '@vue/composition-api'
@@ -12375,6 +12221,8 @@ snapshots:
'@vueuse/metadata@10.11.0': {}
+ '@vueuse/metadata@10.11.1': {}
+
'@vueuse/shared@10.11.0(vue@3.4.35(typescript@5.4.5))':
dependencies:
vue-demi: 0.14.10(vue@3.4.35(typescript@5.4.5))
@@ -12382,6 +12230,13 @@ snapshots:
- '@vue/composition-api'
- vue
+ '@vueuse/shared@10.11.1(vue@3.4.38(typescript@5.4.5))':
+ dependencies:
+ vue-demi: 0.14.10(vue@3.4.38(typescript@5.4.5))
+ transitivePeerDependencies:
+ - '@vue/composition-api'
+ - vue
+
'@wdio/config@7.31.1(typescript@5.4.5)':
dependencies:
'@types/glob': 8.1.0
@@ -12404,7 +12259,7 @@ snapshots:
'@wdio/types@7.30.2(typescript@5.4.5)':
dependencies:
- '@types/node': 18.19.43
+ '@types/node': 18.19.45
got: 11.8.6
optionalDependencies:
typescript: 5.4.5
@@ -12515,14 +12370,14 @@ snapshots:
'@xtuc/long@4.2.2': {}
- '@zenuml/core@3.24.2(typescript@5.4.5)':
+ '@zenuml/core@3.24.3(typescript@5.4.5)':
dependencies:
- '@headlessui-float/vue': 0.14.0(@headlessui/vue@1.7.22(vue@3.4.35(typescript@5.4.5)))(vue@3.4.35(typescript@5.4.5))
- '@headlessui/tailwindcss': 0.2.1(tailwindcss@3.4.7)
- '@headlessui/vue': 1.7.22(vue@3.4.35(typescript@5.4.5))
+ '@headlessui-float/vue': 0.14.3(@headlessui/vue@1.7.22(vue@3.4.38(typescript@5.4.5)))(vue@3.4.38(typescript@5.4.5))
+ '@headlessui/tailwindcss': 0.2.1(tailwindcss@3.4.10)
+ '@headlessui/vue': 1.7.22(vue@3.4.38(typescript@5.4.5))
'@types/assert': 1.5.10
'@types/ramda': 0.28.25
- '@vue/compat': 3.4.35(vue@3.4.35(typescript@5.4.5))
+ '@vue/compat': 3.4.38(vue@3.4.38(typescript@5.4.5))
antlr4: 4.11.0
color-string: 1.9.1
dom-to-image-more: 2.16.0
@@ -12533,11 +12388,11 @@ snapshots:
lodash: 4.17.21
marked: 4.3.0
pino: 8.21.0
- postcss: 8.4.40
+ postcss: 8.4.41
ramda: 0.28.0
- tailwindcss: 3.4.7
- vue: 3.4.35(typescript@5.4.5)
- vuex: 4.1.0(vue@3.4.35(typescript@5.4.5))
+ tailwindcss: 3.4.10
+ vue: 3.4.38(typescript@5.4.5)
+ vuex: 4.1.0(vue@3.4.38(typescript@5.4.5))
transitivePeerDependencies:
- '@vue/composition-api'
- ts-node
@@ -12754,8 +12609,6 @@ snapshots:
astral-regex@2.0.0: {}
- async@3.2.5: {}
-
async@3.2.6: {}
asynckit@0.4.0: {}
@@ -12779,7 +12632,7 @@ snapshots:
aws-sign2@0.7.0: {}
- aws4@1.13.0: {}
+ aws4@1.13.1: {}
axios@1.7.3(debug@4.3.6):
dependencies:
@@ -12789,6 +12642,14 @@ snapshots:
transitivePeerDependencies:
- debug
+ axios@1.7.5(debug@4.3.6):
+ dependencies:
+ follow-redirects: 1.15.6(debug@4.3.6)
+ form-data: 4.0.0
+ proxy-from-env: 1.1.0
+ transitivePeerDependencies:
+ - debug
+
babel-jest@29.7.0(@babel/core@7.25.2):
dependencies:
'@babel/core': 7.25.2
@@ -12822,7 +12683,7 @@ snapshots:
babel-plugin-jest-hoist@29.6.3:
dependencies:
'@babel/template': 7.25.0
- '@babel/types': 7.25.2
+ '@babel/types': 7.25.4
'@types/babel__core': 7.20.5
'@types/babel__traverse': 7.20.6
@@ -13258,14 +13119,6 @@ snapshots:
commander@8.3.0: {}
- comment-json@4.2.4:
- dependencies:
- array-timsort: 1.0.3
- core-util-is: 1.0.3
- esprima: 4.0.1
- has-own-prop: 2.0.0
- repeat-string: 1.6.1
-
comment-json@4.2.5:
dependencies:
array-timsort: 1.0.3
@@ -13381,18 +13234,18 @@ snapshots:
cp-file: 10.0.0
globby: 13.2.2
junk: 4.0.1
- micromatch: 4.0.7
+ micromatch: 4.0.8
nested-error-stacks: 2.1.1
p-filter: 3.0.0
p-map: 6.0.0
- create-jest@29.7.0(@types/node@20.14.14):
+ create-jest@29.7.0(@types/node@20.14.15):
dependencies:
'@jest/types': 29.6.3
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.11
- jest-config: 29.7.0(@types/node@20.14.14)
+ jest-config: 29.7.0(@types/node@20.14.15)
jest-util: 29.7.0
prompts: 2.4.2
transitivePeerDependencies:
@@ -13427,25 +13280,12 @@ snapshots:
crypto-random-string@2.0.0: {}
- cspell-config-lib@8.13.1:
- dependencies:
- '@cspell/cspell-types': 8.13.1
- comment-json: 4.2.4
- yaml: 2.5.0
-
cspell-config-lib@8.13.3:
dependencies:
'@cspell/cspell-types': 8.13.3
comment-json: 4.2.5
yaml: 2.5.0
- cspell-dictionary@8.13.1:
- dependencies:
- '@cspell/cspell-pipe': 8.13.1
- '@cspell/cspell-types': 8.13.1
- cspell-trie-lib: 8.13.1
- fast-equals: 5.0.1
-
cspell-dictionary@8.13.3:
dependencies:
'@cspell/cspell-pipe': 8.13.3
@@ -13453,69 +13293,28 @@ snapshots:
cspell-trie-lib: 8.13.3
fast-equals: 5.0.1
- cspell-gitignore@8.13.1:
+ cspell-gitignore@8.13.3:
dependencies:
- '@cspell/url': 8.13.1
- cspell-glob: 8.13.1
- cspell-io: 8.13.1
+ '@cspell/url': 8.13.3
+ cspell-glob: 8.13.3
+ cspell-io: 8.13.3
find-up-simple: 1.0.0
- cspell-glob@8.13.1:
- dependencies:
- '@cspell/url': 8.13.1
- micromatch: 4.0.7
-
cspell-glob@8.13.3:
dependencies:
'@cspell/url': 8.13.3
micromatch: 4.0.8
- cspell-grammar@8.13.1:
- dependencies:
- '@cspell/cspell-pipe': 8.13.1
- '@cspell/cspell-types': 8.13.1
-
cspell-grammar@8.13.3:
dependencies:
'@cspell/cspell-pipe': 8.13.3
'@cspell/cspell-types': 8.13.3
- cspell-io@8.13.1:
- dependencies:
- '@cspell/cspell-service-bus': 8.13.1
- '@cspell/url': 8.13.1
-
cspell-io@8.13.3:
dependencies:
'@cspell/cspell-service-bus': 8.13.3
'@cspell/url': 8.13.3
- cspell-lib@8.13.1:
- dependencies:
- '@cspell/cspell-bundled-dicts': 8.13.1
- '@cspell/cspell-pipe': 8.13.1
- '@cspell/cspell-resolver': 8.13.1
- '@cspell/cspell-types': 8.13.1
- '@cspell/dynamic-import': 8.13.1
- '@cspell/strong-weak-map': 8.13.1
- '@cspell/url': 8.13.1
- clear-module: 4.1.2
- comment-json: 4.2.4
- cspell-config-lib: 8.13.1
- cspell-dictionary: 8.13.1
- cspell-glob: 8.13.1
- cspell-grammar: 8.13.1
- cspell-io: 8.13.1
- cspell-trie-lib: 8.13.1
- env-paths: 3.0.0
- fast-equals: 5.0.1
- gensequence: 7.0.0
- import-fresh: 3.3.0
- resolve-from: 5.0.0
- vscode-languageserver-textdocument: 1.0.12
- vscode-uri: 3.0.8
- xdg-basedir: 5.1.0
-
cspell-lib@8.13.3:
dependencies:
'@cspell/cspell-bundled-dicts': 8.13.3
@@ -13542,33 +13341,27 @@ snapshots:
vscode-uri: 3.0.8
xdg-basedir: 5.1.0
- cspell-trie-lib@8.13.1:
- dependencies:
- '@cspell/cspell-pipe': 8.13.1
- '@cspell/cspell-types': 8.13.1
- gensequence: 7.0.0
-
cspell-trie-lib@8.13.3:
dependencies:
'@cspell/cspell-pipe': 8.13.3
'@cspell/cspell-types': 8.13.3
gensequence: 7.0.0
- cspell@8.13.1:
+ cspell@8.13.3:
dependencies:
- '@cspell/cspell-json-reporter': 8.13.1
- '@cspell/cspell-pipe': 8.13.1
- '@cspell/cspell-types': 8.13.1
- '@cspell/dynamic-import': 8.13.1
- '@cspell/url': 8.13.1
+ '@cspell/cspell-json-reporter': 8.13.3
+ '@cspell/cspell-pipe': 8.13.3
+ '@cspell/cspell-types': 8.13.3
+ '@cspell/dynamic-import': 8.13.3
+ '@cspell/url': 8.13.3
chalk: 5.3.0
chalk-template: 1.1.0
commander: 12.1.0
- cspell-dictionary: 8.13.1
- cspell-gitignore: 8.13.1
- cspell-glob: 8.13.1
- cspell-io: 8.13.1
- cspell-lib: 8.13.1
+ cspell-dictionary: 8.13.3
+ cspell-gitignore: 8.13.3
+ cspell-glob: 8.13.3
+ cspell-io: 8.13.3
+ cspell-lib: 8.13.3
fast-glob: 3.3.2
fast-json-stable-stringify: 2.1.0
file-entry-cache: 9.0.0
@@ -13597,13 +13390,13 @@ snapshots:
cuint@0.2.2: {}
- cypress-image-snapshot@4.0.1(cypress@13.13.2)(jest@29.7.0(@types/node@20.14.14)):
+ cypress-image-snapshot@4.0.1(cypress@13.13.3)(jest@29.7.0(@types/node@20.14.15)):
dependencies:
chalk: 2.4.2
- cypress: 13.13.2
+ cypress: 13.13.3
fs-extra: 7.0.1
glob: 7.2.3
- jest-image-snapshot: 4.2.0(jest@29.7.0(@types/node@20.14.14))
+ jest-image-snapshot: 4.2.0(jest@29.7.0(@types/node@20.14.15))
pkg-dir: 3.0.0
term-img: 4.1.0
transitivePeerDependencies:
@@ -13611,7 +13404,7 @@ snapshots:
cypress-wait-until@3.0.2: {}
- cypress@13.13.2:
+ cypress@13.13.3:
dependencies:
'@cypress/request': 3.0.1
'@cypress/xvfb': 1.2.4(supports-color@8.1.1)
@@ -13628,7 +13421,7 @@ snapshots:
cli-table3: 0.6.5
commander: 6.2.1
common-tags: 1.8.2
- dayjs: 1.11.12
+ dayjs: 1.11.13
debug: 4.3.6(supports-color@8.1.1)
enquirer: 2.4.1
eventemitter2: 6.4.7
@@ -13656,12 +13449,12 @@ snapshots:
untildify: 4.0.0
yauzl: 2.10.0
- cytoscape-cose-bilkent@4.1.0(cytoscape@3.30.1):
+ cytoscape-cose-bilkent@4.1.0(cytoscape@3.30.2):
dependencies:
cose-base: 1.0.3
- cytoscape: 3.30.1
+ cytoscape: 3.30.2
- cytoscape@3.30.1: {}
+ cytoscape@3.30.2: {}
d3-array@2.12.1:
dependencies:
@@ -13877,6 +13670,8 @@ snapshots:
dayjs@1.11.12: {}
+ dayjs@1.11.13: {}
+
debug@2.6.9:
dependencies:
ms: 2.0.0
@@ -13895,10 +13690,6 @@ snapshots:
dependencies:
ms: 2.1.2
- debug@4.3.5:
- dependencies:
- ms: 2.1.2
-
debug@4.3.6(supports-color@8.1.1):
dependencies:
ms: 2.1.2
@@ -14245,13 +14036,13 @@ snapshots:
dependencies:
htmlparser2: 9.1.0
- eslint-plugin-jest@28.7.0(@typescript-eslint/eslint-plugin@8.0.1(@typescript-eslint/parser@8.0.1(eslint@9.8.0)(typescript@5.4.5))(eslint@9.8.0)(typescript@5.4.5))(eslint@9.8.0)(jest@29.7.0(@types/node@20.14.14))(typescript@5.4.5):
+ eslint-plugin-jest@28.7.0(@typescript-eslint/eslint-plugin@8.0.1(@typescript-eslint/parser@8.0.1(eslint@9.8.0)(typescript@5.4.5))(eslint@9.8.0)(typescript@5.4.5))(eslint@9.8.0)(jest@29.7.0(@types/node@20.14.15))(typescript@5.4.5):
dependencies:
'@typescript-eslint/utils': 8.0.0(eslint@9.8.0)(typescript@5.4.5)
eslint: 9.8.0
optionalDependencies:
'@typescript-eslint/eslint-plugin': 8.0.1(@typescript-eslint/parser@8.0.1(eslint@9.8.0)(typescript@5.4.5))(eslint@9.8.0)(typescript@5.4.5)
- jest: 29.7.0(@types/node@20.14.14)
+ jest: 29.7.0(@types/node@20.14.15)
transitivePeerDependencies:
- supports-color
- typescript
@@ -14576,7 +14367,7 @@ snapshots:
'@nodelib/fs.walk': 1.2.8
glob-parent: 5.1.2
merge2: 1.4.1
- micromatch: 4.0.7
+ micromatch: 4.0.8
fast-json-stable-stringify@2.1.0: {}
@@ -14738,7 +14529,7 @@ snapshots:
find-yarn-workspace-root2@1.2.16:
dependencies:
- micromatch: 4.0.7
+ micromatch: 4.0.8
pkg-dir: 4.2.0
flat-cache@4.0.1:
@@ -14912,7 +14703,7 @@ snapshots:
getos@3.2.1:
dependencies:
- async: 3.2.5
+ async: 3.2.6
getpass@0.1.7:
dependencies:
@@ -14989,7 +14780,7 @@ snapshots:
array-union: 2.1.0
dir-glob: 3.0.1
fast-glob: 3.3.2
- ignore: 5.3.1
+ ignore: 5.3.2
merge2: 1.4.1
slash: 3.0.0
@@ -15156,7 +14947,7 @@ snapshots:
http-proxy: 1.18.1
is-glob: 4.0.3
is-plain-obj: 3.0.0
- micromatch: 4.0.7
+ micromatch: 4.0.8
optionalDependencies:
'@types/express': 4.17.21
transitivePeerDependencies:
@@ -15214,7 +15005,7 @@ snapshots:
human-signals@5.0.0: {}
- husky@9.1.4: {}
+ husky@9.1.5: {}
iconv-lite@0.4.24:
dependencies:
@@ -15464,7 +15255,7 @@ snapshots:
istanbul-lib-instrument@5.2.1:
dependencies:
'@babel/core': 7.25.2
- '@babel/parser': 7.25.3
+ '@babel/parser': 7.25.4
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 6.3.1
@@ -15547,7 +15338,7 @@ snapshots:
'@jest/expect': 29.7.0
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.14.14
+ '@types/node': 20.14.15
chalk: 4.1.2
co: 4.6.0
dedent: 1.5.3
@@ -15567,16 +15358,16 @@ snapshots:
- babel-plugin-macros
- supports-color
- jest-cli@29.7.0(@types/node@20.14.14):
+ jest-cli@29.7.0(@types/node@20.14.15):
dependencies:
'@jest/core': 29.7.0
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
chalk: 4.1.2
- create-jest: 29.7.0(@types/node@20.14.14)
+ create-jest: 29.7.0(@types/node@20.14.15)
exit: 0.1.2
import-local: 3.2.0
- jest-config: 29.7.0(@types/node@20.14.14)
+ jest-config: 29.7.0(@types/node@20.14.15)
jest-util: 29.7.0
jest-validate: 29.7.0
yargs: 17.7.2
@@ -15586,7 +15377,7 @@ snapshots:
- supports-color
- ts-node
- jest-config@29.7.0(@types/node@20.14.14):
+ jest-config@29.7.0(@types/node@20.14.15):
dependencies:
'@babel/core': 7.25.2
'@jest/test-sequencer': 29.7.0
@@ -15605,13 +15396,13 @@ snapshots:
jest-runner: 29.7.0
jest-util: 29.7.0
jest-validate: 29.7.0
- micromatch: 4.0.7
+ micromatch: 4.0.8
parse-json: 5.2.0
pretty-format: 29.7.0
slash: 3.0.0
strip-json-comments: 3.1.1
optionalDependencies:
- '@types/node': 20.14.14
+ '@types/node': 20.14.15
transitivePeerDependencies:
- babel-plugin-macros
- supports-color
@@ -15640,7 +15431,7 @@ snapshots:
'@jest/environment': 29.7.0
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.14.14
+ '@types/node': 20.14.15
jest-mock: 29.7.0
jest-util: 29.7.0
@@ -15650,24 +15441,24 @@ snapshots:
dependencies:
'@jest/types': 29.6.3
'@types/graceful-fs': 4.1.9
- '@types/node': 20.14.14
+ '@types/node': 20.14.15
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.11
jest-regex-util: 29.6.3
jest-util: 29.7.0
jest-worker: 29.7.0
- micromatch: 4.0.7
+ micromatch: 4.0.8
walker: 1.0.8
optionalDependencies:
fsevents: 2.3.3
- jest-image-snapshot@4.2.0(jest@29.7.0(@types/node@20.14.14)):
+ jest-image-snapshot@4.2.0(jest@29.7.0(@types/node@20.14.15)):
dependencies:
chalk: 1.1.3
get-stdin: 5.0.1
glur: 1.1.2
- jest: 29.7.0(@types/node@20.14.14)
+ jest: 29.7.0(@types/node@20.14.15)
lodash: 4.17.21
mkdirp: 0.5.6
pixelmatch: 5.3.0
@@ -15694,7 +15485,7 @@ snapshots:
'@types/stack-utils': 2.0.3
chalk: 4.1.2
graceful-fs: 4.2.11
- micromatch: 4.0.7
+ micromatch: 4.0.8
pretty-format: 29.7.0
slash: 3.0.0
stack-utils: 2.0.6
@@ -15702,7 +15493,7 @@ snapshots:
jest-mock@29.7.0:
dependencies:
'@jest/types': 29.6.3
- '@types/node': 20.14.14
+ '@types/node': 20.14.15
jest-util: 29.7.0
jest-pnp-resolver@1.2.3(jest-resolve@29.7.0):
@@ -15737,7 +15528,7 @@ snapshots:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.14.14
+ '@types/node': 20.14.15
chalk: 4.1.2
emittery: 0.13.1
graceful-fs: 4.2.11
@@ -15765,7 +15556,7 @@ snapshots:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.14.14
+ '@types/node': 20.14.15
chalk: 4.1.2
cjs-module-lexer: 1.3.1
collect-v8-coverage: 1.0.2
@@ -15811,7 +15602,7 @@ snapshots:
jest-util@29.7.0:
dependencies:
'@jest/types': 29.6.3
- '@types/node': 20.14.14
+ '@types/node': 20.14.15
chalk: 4.1.2
ci-info: 3.9.0
graceful-fs: 4.2.11
@@ -15830,7 +15621,7 @@ snapshots:
dependencies:
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.14.14
+ '@types/node': 20.14.15
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.13.1
@@ -15839,23 +15630,23 @@ snapshots:
jest-worker@27.5.1:
dependencies:
- '@types/node': 20.14.14
+ '@types/node': 22.5.0
merge-stream: 2.0.0
supports-color: 8.1.1
jest-worker@29.7.0:
dependencies:
- '@types/node': 20.14.14
+ '@types/node': 20.14.15
jest-util: 29.7.0
merge-stream: 2.0.0
supports-color: 8.1.1
- jest@29.7.0(@types/node@20.14.14):
+ jest@29.7.0(@types/node@20.14.15):
dependencies:
'@jest/core': 29.7.0
'@jest/types': 29.6.3
import-local: 3.2.0
- jest-cli: 29.7.0(@types/node@20.14.14)
+ jest-cli: 29.7.0(@types/node@20.14.15)
transitivePeerDependencies:
- '@types/node'
- babel-plugin-macros
@@ -15911,7 +15702,7 @@ snapshots:
jsdoc-type-pratt-parser@4.0.0: {}
- jsdom@24.1.1:
+ jsdom@24.1.3:
dependencies:
cssstyle: 4.0.1
data-urls: 5.0.0
@@ -16084,7 +15875,7 @@ snapshots:
dependencies:
uc.micro: 1.0.6
- lint-staged@15.2.8:
+ lint-staged@15.2.9:
dependencies:
chalk: 5.3.0
commander: 12.1.0
@@ -16092,7 +15883,7 @@ snapshots:
execa: 8.0.1
lilconfig: 3.1.2
listr2: 8.2.4
- micromatch: 4.0.7
+ micromatch: 4.0.8
pidtree: 0.6.0
string-argv: 0.3.2
yaml: 2.5.0
@@ -16633,11 +16424,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- micromatch@4.0.7:
- dependencies:
- braces: 3.0.3
- picomatch: 2.3.1
-
micromatch@4.0.8:
dependencies:
braces: 3.0.3
@@ -16880,6 +16666,12 @@ snapshots:
is-docker: 2.2.1
is-wsl: 2.2.0
+ openapi-fetch@0.11.1:
+ dependencies:
+ openapi-typescript-helpers: 0.0.12
+
+ openapi-typescript-helpers@0.0.12: {}
+
optionator@0.9.4:
dependencies:
deep-is: 0.1.4
@@ -17100,7 +16892,7 @@ snapshots:
process-warning: 3.0.0
quick-format-unescaped: 4.0.4
real-require: 0.2.0
- safe-stable-stringify: 2.4.3
+ safe-stable-stringify: 2.5.0
sonic-boom: 3.8.1
thread-stream: 2.7.0
@@ -17153,31 +16945,31 @@ snapshots:
possible-typed-array-names@1.0.0: {}
- postcss-import@15.1.0(postcss@8.4.40):
+ postcss-import@15.1.0(postcss@8.4.41):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.41
postcss-value-parser: 4.2.0
read-cache: 1.0.0
resolve: 1.22.8
- postcss-js@4.0.1(postcss@8.4.40):
+ postcss-js@4.0.1(postcss@8.4.41):
dependencies:
camelcase-css: 2.0.1
- postcss: 8.4.40
+ postcss: 8.4.41
- postcss-load-config@4.0.2(postcss@8.4.40):
+ postcss-load-config@4.0.2(postcss@8.4.41):
dependencies:
lilconfig: 3.1.2
yaml: 2.5.0
optionalDependencies:
- postcss: 8.4.40
+ postcss: 8.4.41
- postcss-nested@6.2.0(postcss@8.4.40):
+ postcss-nested@6.2.0(postcss@8.4.41):
dependencies:
- postcss: 8.4.40
- postcss-selector-parser: 6.1.1
+ postcss: 8.4.41
+ postcss-selector-parser: 6.1.2
- postcss-selector-parser@6.1.1:
+ postcss-selector-parser@6.1.2:
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
@@ -17190,6 +16982,12 @@ snapshots:
picocolors: 1.0.1
source-map-js: 1.2.0
+ postcss@8.4.41:
+ dependencies:
+ nanoid: 3.3.7
+ picocolors: 1.0.1
+ source-map-js: 1.2.0
+
preact@10.23.1: {}
preferred-pm@3.1.4:
@@ -17593,7 +17391,7 @@ snapshots:
dependencies:
ret: 0.2.2
- safe-stable-stringify@2.4.3: {}
+ safe-stable-stringify@2.5.0: {}
safer-buffer@2.1.2: {}
@@ -17706,31 +17504,31 @@ snapshots:
dependencies:
kind-of: 6.0.3
- sharp@0.33.4:
+ sharp@0.33.5:
dependencies:
color: 4.2.3
detect-libc: 2.0.3
semver: 7.6.3
optionalDependencies:
- '@img/sharp-darwin-arm64': 0.33.4
- '@img/sharp-darwin-x64': 0.33.4
- '@img/sharp-libvips-darwin-arm64': 1.0.2
- '@img/sharp-libvips-darwin-x64': 1.0.2
- '@img/sharp-libvips-linux-arm': 1.0.2
- '@img/sharp-libvips-linux-arm64': 1.0.2
- '@img/sharp-libvips-linux-s390x': 1.0.2
- '@img/sharp-libvips-linux-x64': 1.0.2
- '@img/sharp-libvips-linuxmusl-arm64': 1.0.2
- '@img/sharp-libvips-linuxmusl-x64': 1.0.2
- '@img/sharp-linux-arm': 0.33.4
- '@img/sharp-linux-arm64': 0.33.4
- '@img/sharp-linux-s390x': 0.33.4
- '@img/sharp-linux-x64': 0.33.4
- '@img/sharp-linuxmusl-arm64': 0.33.4
- '@img/sharp-linuxmusl-x64': 0.33.4
- '@img/sharp-wasm32': 0.33.4
- '@img/sharp-win32-ia32': 0.33.4
- '@img/sharp-win32-x64': 0.33.4
+ '@img/sharp-darwin-arm64': 0.33.5
+ '@img/sharp-darwin-x64': 0.33.5
+ '@img/sharp-libvips-darwin-arm64': 1.0.4
+ '@img/sharp-libvips-darwin-x64': 1.0.4
+ '@img/sharp-libvips-linux-arm': 1.0.5
+ '@img/sharp-libvips-linux-arm64': 1.0.4
+ '@img/sharp-libvips-linux-s390x': 1.0.4
+ '@img/sharp-libvips-linux-x64': 1.0.4
+ '@img/sharp-libvips-linuxmusl-arm64': 1.0.4
+ '@img/sharp-libvips-linuxmusl-x64': 1.0.4
+ '@img/sharp-linux-arm': 0.33.5
+ '@img/sharp-linux-arm64': 0.33.5
+ '@img/sharp-linux-s390x': 0.33.5
+ '@img/sharp-linux-x64': 0.33.5
+ '@img/sharp-linuxmusl-arm64': 0.33.5
+ '@img/sharp-linuxmusl-x64': 0.33.5
+ '@img/sharp-wasm32': 0.33.5
+ '@img/sharp-win32-ia32': 0.33.5
+ '@img/sharp-win32-x64': 0.33.5
shebang-command@1.2.0:
dependencies:
@@ -18077,7 +17875,7 @@ snapshots:
dependencies:
js-tokens: 9.0.0
- stylis@4.3.2: {}
+ stylis@4.3.4: {}
sucrase@3.35.0:
dependencies:
@@ -18118,7 +17916,7 @@ snapshots:
tabbable@6.2.0: {}
- tailwindcss@3.4.7:
+ tailwindcss@3.4.10:
dependencies:
'@alloc/quick-lru': 5.2.0
arg: 5.0.2
@@ -18130,16 +17928,16 @@ snapshots:
is-glob: 4.0.3
jiti: 1.21.6
lilconfig: 2.1.0
- micromatch: 4.0.7
+ micromatch: 4.0.8
normalize-path: 3.0.0
object-hash: 3.0.0
picocolors: 1.0.1
- postcss: 8.4.40
- postcss-import: 15.1.0(postcss@8.4.40)
- postcss-js: 4.0.1(postcss@8.4.40)
- postcss-load-config: 4.0.2(postcss@8.4.40)
- postcss-nested: 6.2.0(postcss@8.4.40)
- postcss-selector-parser: 6.1.1
+ postcss: 8.4.41
+ postcss-import: 15.1.0(postcss@8.4.41)
+ postcss-js: 4.0.1(postcss@8.4.41)
+ postcss-load-config: 4.0.2(postcss@8.4.41)
+ postcss-nested: 6.2.0(postcss@8.4.41)
+ postcss-selector-parser: 6.1.2
resolve: 1.22.8
sucrase: 3.35.0
transitivePeerDependencies:
@@ -18149,7 +17947,7 @@ snapshots:
teen_process@1.16.0:
dependencies:
- '@babel/runtime': 7.25.0
+ '@babel/runtime': 7.25.4
bluebird: 3.7.2
lodash: 4.17.21
shell-quote: 1.8.1
@@ -18429,6 +18227,8 @@ snapshots:
undici-types@5.26.5: {}
+ undici-types@6.19.8: {}
+
unicode-canonical-property-names-ecmascript@2.0.0: {}
unicode-match-property-ecmascript@2.0.0:
@@ -18501,13 +18301,13 @@ snapshots:
universalify@2.0.1: {}
- unocss@0.59.4(postcss@8.4.40)(rollup@2.79.1)(vite@5.3.5(@types/node@20.14.14)(terser@5.31.6)):
+ unocss@0.59.4(postcss@8.4.41)(rollup@2.79.1)(vite@5.3.5(@types/node@22.5.0)(terser@5.31.6)):
dependencies:
- '@unocss/astro': 0.59.4(rollup@2.79.1)(vite@5.3.5(@types/node@20.14.14)(terser@5.31.6))
+ '@unocss/astro': 0.59.4(rollup@2.79.1)(vite@5.3.5(@types/node@22.5.0)(terser@5.31.6))
'@unocss/cli': 0.59.4(rollup@2.79.1)
'@unocss/core': 0.59.4
'@unocss/extractor-arbitrary-variants': 0.59.4
- '@unocss/postcss': 0.59.4(postcss@8.4.40)
+ '@unocss/postcss': 0.59.4(postcss@8.4.41)
'@unocss/preset-attributify': 0.59.4
'@unocss/preset-icons': 0.59.4
'@unocss/preset-mini': 0.59.4
@@ -18522,9 +18322,9 @@ snapshots:
'@unocss/transformer-compile-class': 0.59.4
'@unocss/transformer-directives': 0.59.4
'@unocss/transformer-variant-group': 0.59.4
- '@unocss/vite': 0.59.4(rollup@2.79.1)(vite@5.3.5(@types/node@20.14.14)(terser@5.31.6))
+ '@unocss/vite': 0.59.4(rollup@2.79.1)(vite@5.3.5(@types/node@22.5.0)(terser@5.31.6))
optionalDependencies:
- vite: 5.3.5(@types/node@20.14.14)(terser@5.31.6)
+ vite: 5.3.5(@types/node@22.5.0)(terser@5.31.6)
transitivePeerDependencies:
- postcss
- rollup
@@ -18532,7 +18332,7 @@ snapshots:
unpipe@1.0.0: {}
- unplugin-vue-components@0.26.0(@babel/parser@7.25.4)(rollup@2.79.1)(vue@3.4.35(typescript@5.4.5)):
+ unplugin-vue-components@0.26.0(@babel/parser@7.25.4)(rollup@2.79.1)(vue@3.4.38(typescript@5.4.5)):
dependencies:
'@antfu/utils': 0.7.10
'@rollup/pluginutils': 5.1.0(rollup@2.79.1)
@@ -18544,7 +18344,7 @@ snapshots:
minimatch: 9.0.5
resolve: 1.22.8
unplugin: 1.12.0
- vue: 3.4.35(typescript@5.4.5)
+ vue: 3.4.38(typescript@5.4.5)
optionalDependencies:
'@babel/parser': 7.25.4
transitivePeerDependencies:
@@ -18615,13 +18415,13 @@ snapshots:
unist-util-stringify-position: 4.0.0
vfile-message: 4.0.2
- vite-node@1.6.0(@types/node@20.14.14)(terser@5.31.6):
+ vite-node@1.6.0(@types/node@20.14.15)(terser@5.31.6):
dependencies:
cac: 6.7.14
debug: 4.3.6(supports-color@8.1.1)
pathe: 1.1.2
picocolors: 1.0.1
- vite: 5.3.5(@types/node@20.14.14)(terser@5.31.6)
+ vite: 5.3.5(@types/node@20.14.15)(terser@5.31.6)
transitivePeerDependencies:
- '@types/node'
- less
@@ -18632,7 +18432,7 @@ snapshots:
- supports-color
- terser
- vite-plugin-istanbul@6.0.2(vite@5.3.5(@types/node@20.14.14)(terser@5.31.6)):
+ vite-plugin-istanbul@6.0.2(vite@5.3.5(@types/node@20.14.15)(terser@5.31.6)):
dependencies:
'@istanbuljs/load-nyc-config': 1.1.0
espree: 10.1.0
@@ -18640,60 +18440,70 @@ snapshots:
picocolors: 1.0.1
source-map: 0.7.4
test-exclude: 6.0.0
- vite: 5.3.5(@types/node@20.14.14)(terser@5.31.6)
+ vite: 5.3.5(@types/node@20.14.15)(terser@5.31.6)
transitivePeerDependencies:
- supports-color
- vite-plugin-pwa@0.19.8(vite@5.3.5(@types/node@20.14.14)(terser@5.31.6))(workbox-build@7.1.1(@types/babel__core@7.20.5))(workbox-window@7.1.0):
+ vite-plugin-pwa@0.19.8(vite@5.3.5(@types/node@22.5.0)(terser@5.31.6))(workbox-build@7.1.1(@types/babel__core@7.20.5))(workbox-window@7.1.0):
dependencies:
debug: 4.3.6(supports-color@8.1.1)
fast-glob: 3.3.2
pretty-bytes: 6.1.1
- vite: 5.3.5(@types/node@20.14.14)(terser@5.31.6)
+ vite: 5.3.5(@types/node@22.5.0)(terser@5.31.6)
workbox-build: 7.1.1(@types/babel__core@7.20.5)
workbox-window: 7.1.0
transitivePeerDependencies:
- supports-color
- vite@5.3.5(@types/node@20.14.14)(terser@5.31.6):
+ vite@5.3.5(@types/node@20.14.15)(terser@5.31.6):
dependencies:
esbuild: 0.21.5
postcss: 8.4.40
rollup: 4.20.0
optionalDependencies:
- '@types/node': 20.14.14
+ '@types/node': 20.14.15
fsevents: 2.3.3
terser: 5.31.6
- vitepress-plugin-search@1.0.4-alpha.22(flexsearch@0.7.43)(vitepress@1.1.4(@algolia/client-search@4.24.0)(@types/node@20.14.14)(axios@1.7.3)(postcss@8.4.40)(search-insights@2.15.0)(terser@5.31.6)(typescript@5.4.5))(vue@3.4.35(typescript@5.4.5)):
+ vite@5.3.5(@types/node@22.5.0)(terser@5.31.6):
+ dependencies:
+ esbuild: 0.21.5
+ postcss: 8.4.40
+ rollup: 4.20.0
+ optionalDependencies:
+ '@types/node': 22.5.0
+ fsevents: 2.3.3
+ terser: 5.31.6
+
+ vitepress-plugin-search@1.0.4-alpha.22(flexsearch@0.7.43)(vitepress@1.1.4(@algolia/client-search@4.24.0)(@types/node@22.5.0)(axios@1.7.5)(postcss@8.4.41)(search-insights@2.15.0)(terser@5.31.6)(typescript@5.4.5))(vue@3.4.35(typescript@5.4.5)):
dependencies:
'@types/flexsearch': 0.7.6
'@types/markdown-it': 12.2.3
flexsearch: 0.7.43
glob-to-regexp: 0.4.1
markdown-it: 13.0.2
- vitepress: 1.1.4(@algolia/client-search@4.24.0)(@types/node@20.14.14)(axios@1.7.3)(postcss@8.4.40)(search-insights@2.15.0)(terser@5.31.6)(typescript@5.4.5)
+ vitepress: 1.1.4(@algolia/client-search@4.24.0)(@types/node@22.5.0)(axios@1.7.5)(postcss@8.4.41)(search-insights@2.15.0)(terser@5.31.6)(typescript@5.4.5)
vue: 3.4.35(typescript@5.4.5)
- vitepress@1.1.4(@algolia/client-search@4.24.0)(@types/node@20.14.14)(axios@1.7.3)(postcss@8.4.40)(search-insights@2.15.0)(terser@5.31.6)(typescript@5.4.5):
+ vitepress@1.1.4(@algolia/client-search@4.24.0)(@types/node@22.5.0)(axios@1.7.5)(postcss@8.4.41)(search-insights@2.15.0)(terser@5.31.6)(typescript@5.4.5):
dependencies:
'@docsearch/css': 3.6.1
'@docsearch/js': 3.6.1(@algolia/client-search@4.24.0)(search-insights@2.15.0)
'@shikijs/core': 1.12.1
'@shikijs/transformers': 1.12.1
'@types/markdown-it': 14.1.2
- '@vitejs/plugin-vue': 5.1.2(vite@5.3.5(@types/node@20.14.14)(terser@5.31.6))(vue@3.4.35(typescript@5.4.5))
+ '@vitejs/plugin-vue': 5.1.2(vite@5.3.5(@types/node@22.5.0)(terser@5.31.6))(vue@3.4.35(typescript@5.4.5))
'@vue/devtools-api': 7.3.7
'@vueuse/core': 10.11.0(vue@3.4.35(typescript@5.4.5))
- '@vueuse/integrations': 10.11.0(axios@1.7.3)(focus-trap@7.5.4)(vue@3.4.35(typescript@5.4.5))
+ '@vueuse/integrations': 10.11.0(axios@1.7.5)(focus-trap@7.5.4)(vue@3.4.35(typescript@5.4.5))
focus-trap: 7.5.4
mark.js: 8.11.1
minisearch: 6.3.0
shiki: 1.12.1
- vite: 5.3.5(@types/node@20.14.14)(terser@5.31.6)
+ vite: 5.3.5(@types/node@22.5.0)(terser@5.31.6)
vue: 3.4.35(typescript@5.4.5)
optionalDependencies:
- postcss: 8.4.40
+ postcss: 8.4.41
transitivePeerDependencies:
- '@algolia/client-search'
- '@types/node'
@@ -18721,7 +18531,7 @@ snapshots:
- typescript
- universal-cookie
- vitest@1.6.0(@types/node@20.14.14)(@vitest/ui@1.6.0)(jsdom@24.1.1)(terser@5.31.6):
+ vitest@1.6.0(@types/node@20.14.15)(@vitest/ui@1.6.0)(jsdom@24.1.3)(terser@5.31.6):
dependencies:
'@vitest/expect': 1.6.0
'@vitest/runner': 1.6.0
@@ -18740,13 +18550,13 @@ snapshots:
strip-literal: 2.1.0
tinybench: 2.9.0
tinypool: 0.8.4
- vite: 5.3.5(@types/node@20.14.14)(terser@5.31.6)
- vite-node: 1.6.0(@types/node@20.14.14)(terser@5.31.6)
+ vite: 5.3.5(@types/node@20.14.15)(terser@5.31.6)
+ vite-node: 1.6.0(@types/node@20.14.15)(terser@5.31.6)
why-is-node-running: 2.3.0
optionalDependencies:
- '@types/node': 20.14.14
+ '@types/node': 20.14.15
'@vitest/ui': 1.6.0(vitest@1.6.0)
- jsdom: 24.1.1
+ jsdom: 24.1.3
transitivePeerDependencies:
- less
- lightningcss
@@ -18791,6 +18601,10 @@ snapshots:
dependencies:
vue: 3.4.35(typescript@5.4.5)
+ vue-demi@0.14.10(vue@3.4.38(typescript@5.4.5)):
+ dependencies:
+ vue: 3.4.38(typescript@5.4.5)
+
vue@3.4.35(typescript@5.4.5):
dependencies:
'@vue/compiler-dom': 3.4.35
@@ -18801,10 +18615,20 @@ snapshots:
optionalDependencies:
typescript: 5.4.5
- vuex@4.1.0(vue@3.4.35(typescript@5.4.5)):
+ vue@3.4.38(typescript@5.4.5):
+ dependencies:
+ '@vue/compiler-dom': 3.4.38
+ '@vue/compiler-sfc': 3.4.38
+ '@vue/runtime-dom': 3.4.38
+ '@vue/server-renderer': 3.4.38(vue@3.4.38(typescript@5.4.5))
+ '@vue/shared': 3.4.38
+ optionalDependencies:
+ typescript: 5.4.5
+
+ vuex@4.1.0(vue@3.4.38(typescript@5.4.5)):
dependencies:
'@vue/devtools-api': 6.6.3
- vue: 3.4.35(typescript@5.4.5)
+ vue: 3.4.38(typescript@5.4.5)
w3c-xmlserializer@5.0.0:
dependencies:
@@ -18837,7 +18661,7 @@ snapshots:
webdriver@7.31.1(typescript@5.4.5):
dependencies:
- '@types/node': 18.19.43
+ '@types/node': 18.19.45
'@wdio/config': 7.31.1(typescript@5.4.5)
'@wdio/logger': 7.26.0
'@wdio/protocols': 7.27.0
@@ -19228,8 +19052,6 @@ snapshots:
ws@8.18.0: {}
- ws@8.5.0: {}
-
xdg-basedir@5.1.0: {}
xml-name-validator@5.0.0: {}