diff --git a/docs/en/contribution/maintainers/pr_guide.md b/docs/en/contribution/maintainers/pr_guide.md
index d06574f..61b394a 100644
--- a/docs/en/contribution/maintainers/pr_guide.md
+++ b/docs/en/contribution/maintainers/pr_guide.md
@@ -7,7 +7,7 @@ title: Maintainer PR Guide
::: info
-This information is mostly relevant to the team members of Mockbukkit.
+This information is mostly relevant to the team members of MockBukkit.
We nevertheless provide this information publicly as to encourage transparency
and attract new people to help drive this project forward!
@@ -19,14 +19,18 @@ to automatically tag PRs with a version number on merge. This removes the
tedious work of keeping version numbers up
to date across several PRs at a time and eliminate Human error. The following
custom labels, all of them following the
-pattern of `release/*`, are used by Mockbukkit:
-
-| Label | Semantic Version Type | | Description |
-|----------------------------------------------|:----------------------|:----|:---------------------------------------|
-| | Major Version (X.0.0) | | Only used for breaking changes |
-| | Minor Version (0.X.0) | | New Features |
-| | Patch Version (0.0.X) | | Bugfixes |
-| | None (-) | | Method Stubs or non code related fixes |
+pattern of `release/*`, are used by MockBukkit:
+
+
+
+| Label | Semantic Version Type | Description |
+| -------------------------------------------- | :-------------------- | :------------------------------------- |
+| | Major Version (X.0.0) | Only used for breaking changes |
+| | Minor Version (0.X.0) | New Features |
+| | Patch Version (0.0.X) | Bugfixes |
+| | None (-) | Method Stubs or non code related fixes |
+
+
As you can probably tell, this project
uses [Semantic Versioning](https://semver.org/).
diff --git a/docs/en/user_guide/advanced/adventure.md b/docs/en/user_guide/advanced/adventure.md
index 8052050..ed0022f 100644
--- a/docs/en/user_guide/advanced/adventure.md
+++ b/docs/en/user_guide/advanced/adventure.md
@@ -12,7 +12,7 @@ prev:
::: info
This talks about the
-[Kyori Adventure](https://github.com/KyoriPowered/adventure-platform)Library.
+[Kyori Adventure](https://github.com/KyoriPowered/adventure-platform) Library.
This has no connection to the Adventure Gamemode
:::
diff --git a/docs/en/user_guide/advanced/custom_server_mock.md b/docs/en/user_guide/advanced/custom_server_mock.md
index 6b889ac..495029e 100644
--- a/docs/en/user_guide/advanced/custom_server_mock.md
+++ b/docs/en/user_guide/advanced/custom_server_mock.md
@@ -16,7 +16,7 @@ class. This could be if you want to implement some of the unimplemented methods
or simply provide your own mocks for certain methods.
To do that you can simply pass your custom mock that extends `ServerMock` to the
-`MockBukkit#mock(ServerNock)` method.
+`MockBukkit.mock(ServerMock)` method.
::: code-group
diff --git a/docs/en/user_guide/advanced/events.md b/docs/en/user_guide/advanced/events.md
index 6569e8e..44c5341 100644
--- a/docs/en/user_guide/advanced/events.md
+++ b/docs/en/user_guide/advanced/events.md
@@ -20,7 +20,7 @@ Mockbukkit provides a way to check if Events are fired.Events are Classes that
extend `org.bukkit.event.Event` and are fired by Bukkit.
To check if an event is fired, you can use the
-`PluginManagerMock#assertEventFired(Class extends Event>)`method. This method
+`PluginManagerMock.assertEventFired(Class extends Event>)`method. This method
takes a class that extends `org.bukkit.event.Event`. It will then check if an
event of that type was fired.
@@ -81,7 +81,7 @@ class MyPluginTests {
If you want to check if an event was fired with a specific value, you can use
the
-`PluginManagerMock#assertEventFired(Class extends Event>, Predicate)`
+`PluginManagerMock.assertEventFired(Class extends Event>, Predicate)`
method.
::: code-group
@@ -144,7 +144,7 @@ class MyPluginTests {
### Custom Failure Message with `assertEventFired`
You can also set a custom failure message for the assertion by using the
-`PluginManagerMock#assertEventFired(Class extends Event>, String)` method.
+`PluginManagerMock.assertEventFired(Class extends Event>, String)` method.
::: code-group
@@ -202,7 +202,7 @@ class MyPluginTests {
## Asserting that Events were not fired
You can also check if an event was not fired by using the
-`PluginManagerMock#assertEventNotFired(Class extends Event>)` method.
+`PluginManagerMock.assertEventNotFired(Class extends Event>)` method.
::: code-group
@@ -258,7 +258,7 @@ class MyPluginTests {
### Custom Failure Message with `assertEventNotFired`
You can also set a custom failure message for the assertion by using the
-`PluginManagerMock#assertEventNotFired(Class extends Event>, String)` method.
+`PluginManagerMock.assertEventNotFired(Class extends Event>, String)` method.
::: code-group
diff --git a/docs/en/user_guide/introduction/getting_started.md b/docs/en/user_guide/introduction/getting_started.md
index 3ba746f..7c82f8f 100644
--- a/docs/en/user_guide/introduction/getting_started.md
+++ b/docs/en/user_guide/introduction/getting_started.md
@@ -65,7 +65,7 @@ dependencies {
## Running MockBukkit
MockBukkit is a test framework, so you will need to run your tests using a test
-runner.Mockbukkit recommends using the
+runner. MockBukkit recommends using the
[JUnit](https://junit.org/junit5/) test runner.
You can run your tests using the following command:
@@ -85,5 +85,5 @@ gradle test
If you are using a different test runner,
you will need to configure it to use MockBukkit.
While other test runners like [TestNG](https://testng.org/) exist,
-Mockbukkit has not verified compatibility with them. This does not mean that
-Mockbukkit might work with them, but it is not tested.
+MockBukkit has not verified compatibility with them. This does not mean that
+MockBukkit might work with them, but it is not tested.
diff --git a/docs/en/user_guide/migration/migrate_mockbukkit_4.0_openrewrite.md b/docs/en/user_guide/migration/migrate_mockbukkit_4.0_openrewrite.md
index ce232df..2e115f6 100644
--- a/docs/en/user_guide/migration/migrate_mockbukkit_4.0_openrewrite.md
+++ b/docs/en/user_guide/migration/migrate_mockbukkit_4.0_openrewrite.md
@@ -7,7 +7,7 @@ prev:
text: "Migrate to Mockbukkit 4"
---
-# Migrate to Mockbukkit 4 using OpenRewrite
+# Migrate to MockBukkit 4 using OpenRewrite
Migration to version 4 was carefully automated by the MockBukkit team using
OpenRewrite scripts to facilitate the migration process. To run the scripts,
diff --git a/package.json b/package.json
index e36d1a1..b547592 100644
--- a/package.json
+++ b/package.json
@@ -1,8 +1,8 @@
{
"devDependencies": {
- "prettier": "3.3.3",
- "vitepress": "^1.3.1",
- "vue": "^3.4.34"
+ "prettier": "3.4.2",
+ "vitepress": "^1.5.0",
+ "vue": "^3.5.13"
},
"scripts": {
"docs:dev": "vitepress dev",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 98eae2d..365b2a2 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -8,183 +8,184 @@ importers:
.:
devDependencies:
prettier:
- specifier: 3.3.3
- version: 3.3.3
+ specifier: 3.4.2
+ version: 3.4.2
vitepress:
- specifier: ^1.3.1
- version: 1.3.1(@algolia/client-search@4.24.0)(postcss@8.4.40)(search-insights@2.15.0)
+ specifier: ^1.5.0
+ version: 1.5.0(@algolia/client-search@5.18.0)(postcss@8.4.49)(search-insights@2.15.0)
vue:
- specifier: ^3.4.34
- version: 3.4.34
+ specifier: ^3.5.13
+ version: 3.5.13
packages:
- "@algolia/autocomplete-core@1.9.3":
+ "@algolia/autocomplete-core@1.17.7":
resolution:
{
- integrity: sha512-009HdfugtGCdC4JdXUbVJClA0q0zh24yyePn+KUGk3rP7j8FEe/m5Yo/z65gn6nP/cM39PxpzqKrL7A6fP6PPw==,
+ integrity: sha512-BjiPOW6ks90UKl7TwMv7oNQMnzU+t/wk9mgIDi6b1tXpUek7MW0lbNOUHpvam9pe3lVCf4xPFT+lK7s+e+fs7Q==,
}
- "@algolia/autocomplete-plugin-algolia-insights@1.9.3":
+ "@algolia/autocomplete-plugin-algolia-insights@1.17.7":
resolution:
{
- integrity: sha512-a/yTUkcO/Vyy+JffmAnTWbr4/90cLzw+CC3bRbhnULr/EM0fGNvM13oQQ14f2moLMcVDyAx/leczLlAOovhSZg==,
+ integrity: sha512-Jca5Ude6yUOuyzjnz57og7Et3aXjbwCSDf/8onLHSQgw1qW3ALl9mrMWaXb5FmPVkV3EtkD2F/+NkT6VHyPu9A==,
}
peerDependencies:
search-insights: ">= 1 < 3"
- "@algolia/autocomplete-preset-algolia@1.9.3":
+ "@algolia/autocomplete-preset-algolia@1.17.7":
resolution:
{
- integrity: sha512-d4qlt6YmrLMYy95n5TB52wtNDr6EgAIPH81dvvvW8UmuWRgxEtY0NJiPwl/h95JtG2vmRM804M0DSwMCNZlzRA==,
+ integrity: sha512-ggOQ950+nwbWROq2MOCIL71RE0DdQZsceqrg32UqnhDz8FlO9rL8ONHNsI2R1MH0tkgVIDKI/D0sMiUchsFdWA==,
}
peerDependencies:
"@algolia/client-search": ">= 4.9.1 < 6"
algoliasearch: ">= 4.9.1 < 6"
- "@algolia/autocomplete-shared@1.9.3":
+ "@algolia/autocomplete-shared@1.17.7":
resolution:
{
- integrity: sha512-Wnm9E4Ye6Rl6sTTqjoymD+l8DjSTHsHboVRYrKgEt8Q7UHm9nYbqhN/i0fhUYA3OAEH7WA8x3jfpnmJm3rKvaQ==,
+ integrity: sha512-o/1Vurr42U/qskRSuhBH+VKxMvkkUVTLU6WZQr+L5lGZZLYWyhdzWjW0iGXY7EkwRTjBqvN2EsR81yCTGV/kmg==,
}
peerDependencies:
"@algolia/client-search": ">= 4.9.1 < 6"
algoliasearch: ">= 4.9.1 < 6"
- "@algolia/cache-browser-local-storage@4.24.0":
+ "@algolia/client-abtesting@5.18.0":
resolution:
{
- integrity: sha512-t63W9BnoXVrGy9iYHBgObNXqYXM3tYXCjDSHeNwnsc324r4o5UiVKUiAB4THQ5z9U5hTj6qUvwg/Ez43ZD85ww==,
+ integrity: sha512-DLIrAukjsSrdMNNDx1ZTks72o4RH/1kOn8Wx5zZm8nnqFexG+JzY4SANnCNEjnFQPJTTvC+KpgiNW/CP2lumng==,
}
+ engines: { node: ">= 14.0.0" }
- "@algolia/cache-common@4.24.0":
+ "@algolia/client-analytics@5.18.0":
resolution:
{
- integrity: sha512-emi+v+DmVLpMGhp0V9q9h5CdkURsNmFC+cOS6uK9ndeJm9J4TiqSvPYVu+THUP8P/S08rxf5x2P+p3CfID0Y4g==,
+ integrity: sha512-0VpGG2uQW+h2aejxbG8VbnMCQ9ary9/ot7OASXi6OjE0SRkYQ/+pkW+q09+IScif3pmsVVYggmlMPtAsmYWHng==,
}
+ engines: { node: ">= 14.0.0" }
- "@algolia/cache-in-memory@4.24.0":
+ "@algolia/client-common@5.18.0":
resolution:
{
- integrity: sha512-gDrt2so19jW26jY3/MkFg5mEypFIPbPoXsQGQWAi6TrCPsNOSEYepBMPlucqWigsmEy/prp5ug2jy/N3PVG/8w==,
+ integrity: sha512-X1WMSC+1ve2qlMsemyTF5bIjwipOT+m99Ng1Tyl36ZjQKTa54oajBKE0BrmM8LD8jGdtukAgkUhFoYOaRbMcmQ==,
}
+ engines: { node: ">= 14.0.0" }
- "@algolia/client-account@4.24.0":
+ "@algolia/client-insights@5.18.0":
resolution:
{
- integrity: sha512-adcvyJ3KjPZFDybxlqnf+5KgxJtBjwTPTeyG2aOyoJvx0Y8dUQAEOEVOJ/GBxX0WWNbmaSrhDURMhc+QeevDsA==,
+ integrity: sha512-FAJRNANUOSs/FgYOJ/Njqp+YTe4TMz2GkeZtfsw1TMiA5mVNRS/nnMpxas9771aJz7KTEWvK9GwqPs0K6RMYWg==,
}
+ engines: { node: ">= 14.0.0" }
- "@algolia/client-analytics@4.24.0":
+ "@algolia/client-personalization@5.18.0":
resolution:
{
- integrity: sha512-y8jOZt1OjwWU4N2qr8G4AxXAzaa8DBvyHTWlHzX/7Me1LX8OayfgHexqrsL4vSBcoMmVw2XnVW9MhL+Y2ZDJXg==,
+ integrity: sha512-I2dc94Oiwic3SEbrRp8kvTZtYpJjGtg5y5XnqubgnA15AgX59YIY8frKsFG8SOH1n2rIhUClcuDkxYQNXJLg+w==,
}
+ engines: { node: ">= 14.0.0" }
- "@algolia/client-common@4.24.0":
+ "@algolia/client-query-suggestions@5.18.0":
resolution:
{
- integrity: sha512-bc2ROsNL6w6rqpl5jj/UywlIYC21TwSSoFHKl01lYirGMW+9Eek6r02Tocg4gZ8HAw3iBvu6XQiM3BEbmEMoiA==,
+ integrity: sha512-x6XKIQgKFTgK/bMasXhghoEjHhmgoP61pFPb9+TaUJ32aKOGc65b12usiGJ9A84yS73UDkXS452NjyP50Knh/g==,
}
+ engines: { node: ">= 14.0.0" }
- "@algolia/client-personalization@4.24.0":
+ "@algolia/client-search@5.18.0":
resolution:
{
- integrity: sha512-l5FRFm/yngztweU0HdUzz1rC4yoWCFo3IF+dVIVTfEPg906eZg5BOd1k0K6rZx5JzyyoP4LdmOikfkfGsKVE9w==,
+ integrity: sha512-qI3LcFsVgtvpsBGR7aNSJYxhsR+Zl46+958ODzg8aCxIcdxiK7QEVLMJMZAR57jGqW0Lg/vrjtuLFDMfSE53qA==,
}
+ engines: { node: ">= 14.0.0" }
- "@algolia/client-search@4.24.0":
+ "@algolia/ingestion@1.18.0":
resolution:
{
- integrity: sha512-uRW6EpNapmLAD0mW47OXqTP8eiIx5F6qN9/x/7HHO6owL3N1IXqydGwW5nhDFBrV+ldouro2W1VX3XlcUXEFCA==,
+ integrity: sha512-bGvJg7HnGGm+XWYMDruZXWgMDPVt4yCbBqq8DM6EoaMBK71SYC4WMfIdJaw+ABqttjBhe6aKNRkWf/bbvYOGyw==,
}
+ engines: { node: ">= 14.0.0" }
- "@algolia/logger-common@4.24.0":
+ "@algolia/monitoring@1.18.0":
resolution:
{
- integrity: sha512-LLUNjkahj9KtKYrQhFKCzMx0BY3RnNP4FEtO+sBybCjJ73E8jNdaKJ/Dd8A/VA4imVHP5tADZ8pn5B8Ga/wTMA==,
+ integrity: sha512-lBssglINIeGIR+8KyzH05NAgAmn1BCrm5D2T6pMtr/8kbTHvvrm1Zvcltc5dKUQEFyyx3J5+MhNc7kfi8LdjVw==,
}
+ engines: { node: ">= 14.0.0" }
- "@algolia/logger-console@4.24.0":
+ "@algolia/recommend@5.18.0":
resolution:
{
- integrity: sha512-X4C8IoHgHfiUROfoRCV+lzSy+LHMgkoEEU1BbKcsfnV0i0S20zyy0NLww9dwVHUWNfPPxdMU+/wKmLGYf96yTg==,
+ integrity: sha512-uSnkm0cdAuFwdMp4pGT5vHVQ84T6AYpTZ3I0b3k/M3wg4zXDhl3aCiY8NzokEyRLezz/kHLEEcgb/tTTobOYVw==,
}
+ engines: { node: ">= 14.0.0" }
- "@algolia/recommend@4.24.0":
+ "@algolia/requester-browser-xhr@5.18.0":
resolution:
{
- integrity: sha512-P9kcgerfVBpfYHDfVZDvvdJv0lEoCvzNlOy2nykyt5bK8TyieYyiD0lguIJdRZZYGre03WIAFf14pgE+V+IBlw==,
+ integrity: sha512-1XFjW0C3pV0dS/9zXbV44cKI+QM4ZIz9cpatXpsjRlq6SUCpLID3DZHsXyE6sTb8IhyPaUjk78GEJT8/3hviqg==,
}
+ engines: { node: ">= 14.0.0" }
- "@algolia/requester-browser-xhr@4.24.0":
+ "@algolia/requester-fetch@5.18.0":
resolution:
{
- integrity: sha512-Z2NxZMb6+nVXSjF13YpjYTdvV3032YTBSGm2vnYvYPA6mMxzM3v5rsCiSspndn9rzIW4Qp1lPHBvuoKJV6jnAA==,
+ integrity: sha512-0uodeNdAHz1YbzJh6C5xeQ4T6x5WGiUxUq3GOaT/R4njh5t78dq+Rb187elr7KtnjUmETVVuCvmEYaThfTHzNg==,
}
+ engines: { node: ">= 14.0.0" }
- "@algolia/requester-common@4.24.0":
+ "@algolia/requester-node-http@5.18.0":
resolution:
{
- integrity: sha512-k3CXJ2OVnvgE3HMwcojpvY6d9kgKMPRxs/kVohrwF5WMr2fnqojnycZkxPoEg+bXm8fi5BBfFmOqgYztRtHsQA==,
+ integrity: sha512-tZCqDrqJ2YE2I5ukCQrYN8oiF6u3JIdCxrtKq+eniuLkjkO78TKRnXrVcKZTmfFJyyDK8q47SfDcHzAA3nHi6w==,
}
+ engines: { node: ">= 14.0.0" }
- "@algolia/requester-node-http@4.24.0":
+ "@babel/helper-string-parser@7.25.9":
resolution:
{
- integrity: sha512-JF18yTjNOVYvU/L3UosRcvbPMGT9B+/GQWNWnenIImglzNVGpyzChkXLnrSf6uxwVNO6ESGu6oN8MqcGQcjQJw==,
- }
-
- "@algolia/transporter@4.24.0":
- resolution:
- {
- integrity: sha512-86nI7w6NzWxd1Zp9q3413dRshDqAzSbsQjhcDhPIatEFiZrL1/TjnHL8S7jVKFePlIMzDsZWXAXwXzcok9c5oA==,
- }
-
- "@babel/helper-string-parser@7.24.8":
- resolution:
- {
- integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==,
+ integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==,
}
engines: { node: ">=6.9.0" }
- "@babel/helper-validator-identifier@7.24.7":
+ "@babel/helper-validator-identifier@7.25.9":
resolution:
{
- integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==,
+ integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==,
}
engines: { node: ">=6.9.0" }
- "@babel/parser@7.25.0":
+ "@babel/parser@7.26.3":
resolution:
{
- integrity: sha512-CzdIU9jdP0dg7HdyB+bHvDJGagUv+qtzZt5rYCWwW6tITNqV9odjp6Qu41gkG0ca5UfdDUWrKkiAnHHdGRnOrA==,
+ integrity: sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==,
}
engines: { node: ">=6.0.0" }
hasBin: true
- "@babel/types@7.25.0":
+ "@babel/types@7.26.3":
resolution:
{
- integrity: sha512-LcnxQSsd9aXOIgmmSpvZ/1yo46ra2ESYyqLcryaBZOghxy5qqOBjvCWP5JfkI8yl9rlxRgdLTTMCQQRcN2hdCg==,
+ integrity: sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==,
}
engines: { node: ">=6.9.0" }
- "@docsearch/css@3.6.1":
+ "@docsearch/css@3.8.2":
resolution:
{
- integrity: sha512-VtVb5DS+0hRIprU2CO6ZQjK2Zg4QU5HrDM1+ix6rT0umsYvFvatMAnf97NHZlVWDaaLlx7GRfR/7FikANiM2Fg==,
+ integrity: sha512-y05ayQFyUmCXze79+56v/4HpycYF3uFqB78pLPrSV5ZKAlDuIAAJNhaRi8tTdRNXh05yxX/TyNnzD6LwSM89vQ==,
}
- "@docsearch/js@3.6.1":
+ "@docsearch/js@3.8.2":
resolution:
{
- integrity: sha512-erI3RRZurDr1xES5hvYJ3Imp7jtrXj6f1xYIzDzxiS7nNBufYWPbJwrmMqWC5g9y165PmxEmN9pklGCdLi0Iqg==,
+ integrity: sha512-Q5wY66qHn0SwA7Taa0aDbHiJvaFJLOJyHmooQ7y8hlwwQLQ/5WwCcoX0g7ii04Qi2DJlHsd0XXzJ8Ypw9+9YmQ==,
}
- "@docsearch/react@3.6.1":
+ "@docsearch/react@3.8.2":
resolution:
{
- integrity: sha512-qXZkEPvybVhSXj0K7U3bXc233tk5e8PfhoZ6MhPOiik/qUQxYC+Dn9DnoS7CxHQQhHfCvTiN0eY9M12oRghEXw==,
+ integrity: sha512-xCRrJQlTt8N9GU0DG4ptwHRkfnSnD/YpdeaXe02iKfqs97TkZJv60yE+1eq/tjPcVnTW8dP5qLP7itifFVV5eg==,
}
peerDependencies:
"@types/react": ">= 16.8.0 < 19.0.0"
@@ -408,156 +409,216 @@ packages:
cpu: [x64]
os: [win32]
+ "@iconify-json/simple-icons@1.2.16":
+ resolution:
+ {
+ integrity: sha512-mnQ0Ih8CDIgOqbi0qz01AJNOeFVuGFRimelg3JmJtD0y5EpZVw+enPPcpcxJKipsRZ/oqhcP3AhYkF1kM7yomg==,
+ }
+
+ "@iconify/types@2.0.0":
+ resolution:
+ {
+ integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==,
+ }
+
"@jridgewell/sourcemap-codec@1.5.0":
resolution:
{
integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==,
}
- "@rollup/rollup-android-arm-eabi@4.19.1":
+ "@rollup/rollup-android-arm-eabi@4.29.1":
resolution:
{
- integrity: sha512-XzqSg714++M+FXhHfXpS1tDnNZNpgxxuGZWlRG/jSj+VEPmZ0yg6jV4E0AL3uyBKxO8mO3xtOsP5mQ+XLfrlww==,
+ integrity: sha512-ssKhA8RNltTZLpG6/QNkCSge+7mBQGUqJRisZ2MDQcEGaK93QESEgWK2iOpIDZ7k9zPVkG5AS3ksvD5ZWxmItw==,
}
cpu: [arm]
os: [android]
- "@rollup/rollup-android-arm64@4.19.1":
+ "@rollup/rollup-android-arm64@4.29.1":
resolution:
{
- integrity: sha512-thFUbkHteM20BGShD6P08aungq4irbIZKUNbG70LN8RkO7YztcGPiKTTGZS7Kw+x5h8hOXs0i4OaHwFxlpQN6A==,
+ integrity: sha512-CaRfrV0cd+NIIcVVN/jx+hVLN+VRqnuzLRmfmlzpOzB87ajixsN/+9L5xNmkaUUvEbI5BmIKS+XTwXsHEb65Ew==,
}
cpu: [arm64]
os: [android]
- "@rollup/rollup-darwin-arm64@4.19.1":
+ "@rollup/rollup-darwin-arm64@4.29.1":
resolution:
{
- integrity: sha512-8o6eqeFZzVLia2hKPUZk4jdE3zW7LCcZr+MD18tXkgBBid3lssGVAYuox8x6YHoEPDdDa9ixTaStcmx88lio5Q==,
+ integrity: sha512-2ORr7T31Y0Mnk6qNuwtyNmy14MunTAMx06VAPI6/Ju52W10zk1i7i5U3vlDRWjhOI5quBcrvhkCHyF76bI7kEw==,
}
cpu: [arm64]
os: [darwin]
- "@rollup/rollup-darwin-x64@4.19.1":
+ "@rollup/rollup-darwin-x64@4.29.1":
resolution:
{
- integrity: sha512-4T42heKsnbjkn7ovYiAdDVRRWZLU9Kmhdt6HafZxFcUdpjlBlxj4wDrt1yFWLk7G4+E+8p2C9tcmSu0KA6auGA==,
+ integrity: sha512-j/Ej1oanzPjmN0tirRd5K2/nncAhS9W6ICzgxV+9Y5ZsP0hiGhHJXZ2JQ53iSSjj8m6cRY6oB1GMzNn2EUt6Ng==,
}
cpu: [x64]
os: [darwin]
- "@rollup/rollup-linux-arm-gnueabihf@4.19.1":
+ "@rollup/rollup-freebsd-arm64@4.29.1":
resolution:
{
- integrity: sha512-MXg1xp+e5GhZ3Vit1gGEyoC+dyQUBy2JgVQ+3hUrD9wZMkUw/ywgkpK7oZgnB6kPpGrxJ41clkPPnsknuD6M2Q==,
+ integrity: sha512-91C//G6Dm/cv724tpt7nTyP+JdN12iqeXGFM1SqnljCmi5yTXriH7B1r8AD9dAZByHpKAumqP1Qy2vVNIdLZqw==,
+ }
+ cpu: [arm64]
+ os: [freebsd]
+
+ "@rollup/rollup-freebsd-x64@4.29.1":
+ resolution:
+ {
+ integrity: sha512-hEioiEQ9Dec2nIRoeHUP6hr1PSkXzQaCUyqBDQ9I9ik4gCXQZjJMIVzoNLBRGet+hIUb3CISMh9KXuCcWVW/8w==,
+ }
+ cpu: [x64]
+ os: [freebsd]
+
+ "@rollup/rollup-linux-arm-gnueabihf@4.29.1":
+ resolution:
+ {
+ integrity: sha512-Py5vFd5HWYN9zxBv3WMrLAXY3yYJ6Q/aVERoeUFwiDGiMOWsMs7FokXihSOaT/PMWUty/Pj60XDQndK3eAfE6A==,
}
cpu: [arm]
os: [linux]
- "@rollup/rollup-linux-arm-musleabihf@4.19.1":
+ "@rollup/rollup-linux-arm-musleabihf@4.29.1":
resolution:
{
- integrity: sha512-DZNLwIY4ftPSRVkJEaxYkq7u2zel7aah57HESuNkUnz+3bZHxwkCUkrfS2IWC1sxK6F2QNIR0Qr/YXw7nkF3Pw==,
+ integrity: sha512-RiWpGgbayf7LUcuSNIbahr0ys2YnEERD4gYdISA06wa0i8RALrnzflh9Wxii7zQJEB2/Eh74dX4y/sHKLWp5uQ==,
}
cpu: [arm]
os: [linux]
- "@rollup/rollup-linux-arm64-gnu@4.19.1":
+ "@rollup/rollup-linux-arm64-gnu@4.29.1":
resolution:
{
- integrity: sha512-C7evongnjyxdngSDRRSQv5GvyfISizgtk9RM+z2biV5kY6S/NF/wta7K+DanmktC5DkuaJQgoKGf7KUDmA7RUw==,
+ integrity: sha512-Z80O+taYxTQITWMjm/YqNoe9d10OX6kDh8X5/rFCMuPqsKsSyDilvfg+vd3iXIqtfmp+cnfL1UrYirkaF8SBZA==,
}
cpu: [arm64]
os: [linux]
- "@rollup/rollup-linux-arm64-musl@4.19.1":
+ "@rollup/rollup-linux-arm64-musl@4.29.1":
resolution:
{
- integrity: sha512-89tFWqxfxLLHkAthAcrTs9etAoBFRduNfWdl2xUs/yLV+7XDrJ5yuXMHptNqf1Zw0UCA3cAutkAiAokYCkaPtw==,
+ integrity: sha512-fOHRtF9gahwJk3QVp01a/GqS4hBEZCV1oKglVVq13kcK3NeVlS4BwIFzOHDbmKzt3i0OuHG4zfRP0YoG5OF/rA==,
}
cpu: [arm64]
os: [linux]
- "@rollup/rollup-linux-powerpc64le-gnu@4.19.1":
+ "@rollup/rollup-linux-loongarch64-gnu@4.29.1":
resolution:
{
- integrity: sha512-PromGeV50sq+YfaisG8W3fd+Cl6mnOOiNv2qKKqKCpiiEke2KiKVyDqG/Mb9GWKbYMHj5a01fq/qlUR28PFhCQ==,
+ integrity: sha512-5a7q3tnlbcg0OodyxcAdrrCxFi0DgXJSoOuidFUzHZ2GixZXQs6Tc3CHmlvqKAmOs5eRde+JJxeIf9DonkmYkw==,
+ }
+ cpu: [loong64]
+ os: [linux]
+
+ "@rollup/rollup-linux-powerpc64le-gnu@4.29.1":
+ resolution:
+ {
+ integrity: sha512-9b4Mg5Yfz6mRnlSPIdROcfw1BU22FQxmfjlp/CShWwO3LilKQuMISMTtAu/bxmmrE6A902W2cZJuzx8+gJ8e9w==,
}
cpu: [ppc64]
os: [linux]
- "@rollup/rollup-linux-riscv64-gnu@4.19.1":
+ "@rollup/rollup-linux-riscv64-gnu@4.29.1":
resolution:
{
- integrity: sha512-/1BmHYh+iz0cNCP0oHCuF8CSiNj0JOGf0jRlSo3L/FAyZyG2rGBuKpkZVH9YF+x58r1jgWxvm1aRg3DHrLDt6A==,
+ integrity: sha512-G5pn0NChlbRM8OJWpJFMX4/i8OEU538uiSv0P6roZcbpe/WfhEO+AT8SHVKfp8qhDQzaz7Q+1/ixMy7hBRidnQ==,
}
cpu: [riscv64]
os: [linux]
- "@rollup/rollup-linux-s390x-gnu@4.19.1":
+ "@rollup/rollup-linux-s390x-gnu@4.29.1":
resolution:
{
- integrity: sha512-0cYP5rGkQWRZKy9/HtsWVStLXzCF3cCBTRI+qRL8Z+wkYlqN7zrSYm6FuY5Kd5ysS5aH0q5lVgb/WbG4jqXN1Q==,
+ integrity: sha512-WM9lIkNdkhVwiArmLxFXpWndFGuOka4oJOZh8EP3Vb8q5lzdSCBuhjavJsw68Q9AKDGeOOIHYzYm4ZFvmWez5g==,
}
cpu: [s390x]
os: [linux]
- "@rollup/rollup-linux-x64-gnu@4.19.1":
+ "@rollup/rollup-linux-x64-gnu@4.29.1":
resolution:
{
- integrity: sha512-XUXeI9eM8rMP8aGvii/aOOiMvTs7xlCosq9xCjcqI9+5hBxtjDpD+7Abm1ZhVIFE1J2h2VIg0t2DX/gjespC2Q==,
+ integrity: sha512-87xYCwb0cPGZFoGiErT1eDcssByaLX4fc0z2nRM6eMtV9njAfEE6OW3UniAoDhX4Iq5xQVpE6qO9aJbCFumKYQ==,
}
cpu: [x64]
os: [linux]
- "@rollup/rollup-linux-x64-musl@4.19.1":
+ "@rollup/rollup-linux-x64-musl@4.29.1":
resolution:
{
- integrity: sha512-V7cBw/cKXMfEVhpSvVZhC+iGifD6U1zJ4tbibjjN+Xi3blSXaj/rJynAkCFFQfoG6VZrAiP7uGVzL440Q6Me2Q==,
+ integrity: sha512-xufkSNppNOdVRCEC4WKvlR1FBDyqCSCpQeMMgv9ZyXqqtKBfkw1yfGMTUTs9Qsl6WQbJnsGboWCp7pJGkeMhKA==,
}
cpu: [x64]
os: [linux]
- "@rollup/rollup-win32-arm64-msvc@4.19.1":
+ "@rollup/rollup-win32-arm64-msvc@4.29.1":
resolution:
{
- integrity: sha512-88brja2vldW/76jWATlBqHEoGjJLRnP0WOEKAUbMcXaAZnemNhlAHSyj4jIwMoP2T750LE9lblvD4e2jXleZsA==,
+ integrity: sha512-F2OiJ42m77lSkizZQLuC+jiZ2cgueWQL5YC9tjo3AgaEw+KJmVxHGSyQfDUoYR9cci0lAywv2Clmckzulcq6ig==,
}
cpu: [arm64]
os: [win32]
- "@rollup/rollup-win32-ia32-msvc@4.19.1":
+ "@rollup/rollup-win32-ia32-msvc@4.29.1":
resolution:
{
- integrity: sha512-LdxxcqRVSXi6k6JUrTah1rHuaupoeuiv38du8Mt4r4IPer3kwlTo+RuvfE8KzZ/tL6BhaPlzJ3835i6CxrFIRQ==,
+ integrity: sha512-rYRe5S0FcjlOBZQHgbTKNrqxCBUmgDJem/VQTCcTnA2KCabYSWQDrytOzX7avb79cAAweNmMUb/Zw18RNd4mng==,
}
cpu: [ia32]
os: [win32]
- "@rollup/rollup-win32-x64-msvc@4.19.1":
+ "@rollup/rollup-win32-x64-msvc@4.29.1":
resolution:
{
- integrity: sha512-2bIrL28PcK3YCqD9anGxDxamxdiJAxA+l7fWIwM5o8UqNy1t3d1NdAweO2XhA0KTDJ5aH1FsuiT5+7VhtHliXg==,
+ integrity: sha512-+10CMg9vt1MoHj6x1pxyjPSMjHTIlqs8/tBztXvPAx24SKs9jwVnKqHJumlH/IzhaPUaj3T6T6wfZr8okdXaIg==,
}
cpu: [x64]
os: [win32]
- "@shikijs/core@1.12.0":
+ "@shikijs/core@1.24.4":
+ resolution:
+ {
+ integrity: sha512-jjLsld+xEEGYlxAXDyGwWsKJ1sw5Pc1pnp4ai2ORpjx2UX08YYTC0NNqQYO1PaghYaR+PvgMOGuvzw2he9sk0Q==,
+ }
+
+ "@shikijs/engine-javascript@1.24.4":
+ resolution:
+ {
+ integrity: sha512-TClaQOLvo9WEMJv6GoUsykQ6QdynuKszuORFWCke8qvi6PeLm7FcD9+7y45UenysxEWYpDL5KJaVXTngTE+2BA==,
+ }
+
+ "@shikijs/engine-oniguruma@1.24.4":
+ resolution:
+ {
+ integrity: sha512-Do2ry6flp2HWdvpj2XOwwa0ljZBRy15HKZITzPcNIBOGSeprnA8gOooA/bLsSPuy8aJBa+Q/r34dMmC3KNL/zw==,
+ }
+
+ "@shikijs/transformers@1.24.4":
+ resolution:
+ {
+ integrity: sha512-0jq5p9WLB7ToM/O7RWfxuIwirTJbIQsUR06jxdG3h3CEuO5m7ik8GnDsxwHhyIEfgJSZczSnVUZWFrNKy5It6g==,
+ }
+
+ "@shikijs/types@1.24.4":
resolution:
{
- integrity: sha512-mc1cLbm6UQ8RxLc0dZES7v5rkH+99LxQp/ZvTqV3NLyYsO/fD6JhEflP1H5b2SDq9gI0+0G36AVZWxvounfR9w==,
+ integrity: sha512-0r0XU7Eaow0PuDxuWC1bVqmWCgm3XqizIaT7SM42K03vc69LGooT0U8ccSR44xP/hGlNx4FKhtYpV+BU6aaKAA==,
}
- "@shikijs/transformers@1.12.0":
+ "@shikijs/vscode-textmate@9.3.1":
resolution:
{
- integrity: sha512-ZS6RzDCWbnDljViMaeuraGaoMesCzDxzO2Slhpvic6j+Wqq4RXfQgb2ITTSrtBjv2HGCLP22mvXydtWCOKea8g==,
+ integrity: sha512-79QfK1393x9Ho60QFyLti+QfdJzRQCVLFb97kOIV7Eo9vQU/roINgk7m24uv0a7AUvN//RDH36FLjjK48v0s9g==,
}
- "@types/estree@1.0.5":
+ "@types/estree@1.0.6":
resolution:
{
- integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==,
+ integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==,
}
"@types/hast@3.0.4":
@@ -578,16 +639,22 @@ packages:
integrity: sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==,
}
+ "@types/mdast@4.0.4":
+ resolution:
+ {
+ integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==,
+ }
+
"@types/mdurl@2.0.0":
resolution:
{
integrity: sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==,
}
- "@types/unist@3.0.2":
+ "@types/unist@3.0.3":
resolution:
{
- integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==,
+ integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==,
}
"@types/web-bluetooth@0.0.20":
@@ -596,114 +663,120 @@ packages:
integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==,
}
- "@vitejs/plugin-vue@5.1.1":
+ "@ungap/structured-clone@1.2.1":
+ resolution:
+ {
+ integrity: sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA==,
+ }
+
+ "@vitejs/plugin-vue@5.2.1":
resolution:
{
- integrity: sha512-sDckXxlHpMsjRQbAH9WanangrfrblsOd3pNifePs+FOHjJg1jfWq5L/P0PsBRndEt3nmdUnmvieP8ULDeX5AvA==,
+ integrity: sha512-cxh314tzaWwOLqVes2gnnCtvBDcM1UMdn+iFR+UjAn411dPT3tOmqrJjbMd7koZpMAmBM/GqeV4n9ge7JSiJJQ==,
}
engines: { node: ^18.0.0 || >=20.0.0 }
peerDependencies:
- vite: ^5.0.0
+ vite: ^5.0.0 || ^6.0.0
vue: ^3.2.25
- "@vue/compiler-core@3.4.34":
+ "@vue/compiler-core@3.5.13":
resolution:
{
- integrity: sha512-Z0izUf32+wAnQewjHu+pQf1yw00EGOmevl1kE+ljjjMe7oEfpQ+BI3/JNK7yMB4IrUsqLDmPecUrpj3mCP+yJQ==,
+ integrity: sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==,
}
- "@vue/compiler-dom@3.4.34":
+ "@vue/compiler-dom@3.5.13":
resolution:
{
- integrity: sha512-3PUOTS1h5cskdOJMExCu2TInXuM0j60DRPpSCJDqOCupCfUZCJoyQmKtRmA8EgDNZ5kcEE7vketamRZfrEuVDw==,
+ integrity: sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==,
}
- "@vue/compiler-sfc@3.4.34":
+ "@vue/compiler-sfc@3.5.13":
resolution:
{
- integrity: sha512-x6lm0UrM03jjDXTPZgD9Ad8bIVD1ifWNit2EaWQIZB5CULr46+FbLQ5RpK7AXtDHGjx9rmvC7QRCTjsiGkAwRw==,
+ integrity: sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==,
}
- "@vue/compiler-ssr@3.4.34":
+ "@vue/compiler-ssr@3.5.13":
resolution:
{
- integrity: sha512-8TDBcLaTrFm5rnF+Qm4BlliaopJgqJ28Nsrc80qazynm5aJO+Emu7y0RWw34L8dNnTRdcVBpWzJxhGYzsoVu4g==,
+ integrity: sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==,
}
- "@vue/devtools-api@7.3.7":
+ "@vue/devtools-api@7.6.8":
resolution:
{
- integrity: sha512-kvjQ6nmsqTp7SrmpwI2G0MgbC4ys0bPsgQirHXJM8y1m7siQ5RnWQUHJVfyUrHNguCySW1cevAdIw87zrPTl9g==,
+ integrity: sha512-ma6dY/sZR36zALVsV1W7eC57c6IJPXsy8SNgZn1PLVWU4z4dPn5TIBmnF4stmdJ4sQcixqKaQ8pwjbMPzEZwiA==,
}
- "@vue/devtools-kit@7.3.7":
+ "@vue/devtools-kit@7.6.8":
resolution:
{
- integrity: sha512-ktHhhjI4CoUrwdSUF5b/MFfjrtAtK8r4vhOkFyRN5Yp9kdXTwsRBYcwarHuP+wFPKf4/KM7DVBj2ELO8SBwdsw==,
+ integrity: sha512-JhJ8M3sPU+v0P2iZBF2DkdmR9L0dnT5RXJabJqX6o8KtFs3tebdvfoXV2Dm3BFuqeECuMJIfF1aCzSt+WQ4wrw==,
}
- "@vue/devtools-shared@7.3.7":
+ "@vue/devtools-shared@7.6.8":
resolution:
{
- integrity: sha512-M9EU1/bWi5GNS/+IZrAhwGOVZmUTN4MH22Hvh35nUZZg9AZP2R2OhfCb+MG4EtAsrUEYlu3R43/SIj3G7EZYtQ==,
+ integrity: sha512-9MBPO5Z3X1nYGFqTJyohl6Gmf/J7UNN1oicHdyzBVZP4jnhZ4c20MgtaHDIzWmHDHCMYVS5bwKxT3jxh7gOOKA==,
}
- "@vue/reactivity@3.4.34":
+ "@vue/reactivity@3.5.13":
resolution:
{
- integrity: sha512-ua+Lo+wBRlBEX9TtgPOShE2JwIO7p6BTZ7t1KZVPoaBRfqbC7N3c8Mpzicx173fXxx5VXeU6ykiHo7WgLzJQDA==,
+ integrity: sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg==,
}
- "@vue/runtime-core@3.4.34":
+ "@vue/runtime-core@3.5.13":
resolution:
{
- integrity: sha512-PXhkiRPwcPGJ1BnyBZFI96GfInCVskd0HPNIAZn7i3YOmLbtbTZpB7/kDTwC1W7IqdGPkTVC63IS7J2nZs4Ebg==,
+ integrity: sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw==,
}
- "@vue/runtime-dom@3.4.34":
+ "@vue/runtime-dom@3.5.13":
resolution:
{
- integrity: sha512-dXqIe+RqFAK2Euak4UsvbIupalrhc67OuQKpD7HJ3W2fv8jlqvI7szfBCsAEcE8o/wyNpkloxB6J8viuF/E3gw==,
+ integrity: sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog==,
}
- "@vue/server-renderer@3.4.34":
+ "@vue/server-renderer@3.5.13":
resolution:
{
- integrity: sha512-GeyEUfMVRZMD/mZcNONEqg7MiU10QQ1DB3O/Qr6+8uXpbwdlmVgQ5Qs1/ZUAFX1X2UUtqMoGrDRbxdWfOJFT7Q==,
+ integrity: sha512-wAi4IRJV/2SAW3htkTlB+dHeRmpTiVIK1OGLWV1yeStVSebSQQOwGwIq0D3ZIoBj2C2qpgz5+vX9iEBkTdk5YA==,
}
peerDependencies:
- vue: 3.4.34
+ vue: 3.5.13
- "@vue/shared@3.4.34":
+ "@vue/shared@3.5.13":
resolution:
{
- integrity: sha512-x5LmiRLpRsd9KTjAB8MPKf0CDPMcuItjP0gbNqFCIgL1I8iYp4zglhj9w9FPCdIbHG2M91RVeIbArFfFTz9I3A==,
+ integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==,
}
- "@vueuse/core@10.11.0":
+ "@vueuse/core@11.3.0":
resolution:
{
- integrity: sha512-x3sD4Mkm7PJ+pcq3HX8PLPBadXCAlSDR/waK87dz0gQE+qJnaaFhc/dZVfJz+IUYzTMVGum2QlR7ImiJQN4s6g==,
+ integrity: sha512-7OC4Rl1f9G8IT6rUfi9JrKiXy4bfmHhZ5x2Ceojy0jnd3mHNEvV4JaRygH362ror6/NZ+Nl+n13LPzGiPN8cKA==,
}
- "@vueuse/integrations@10.11.0":
+ "@vueuse/integrations@11.3.0":
resolution:
{
- integrity: sha512-Pp6MtWEIr+NDOccWd8j59Kpjy5YDXogXI61Kb1JxvSfVBO8NzFQkmrKmSZz47i+ZqHnIzxaT38L358yDHTncZg==,
+ integrity: sha512-5fzRl0apQWrDezmobchoiGTkGw238VWESxZHazfhP3RM7pDSiyXy18QbfYkILoYNTd23HPAfQTJpkUc5QbkwTw==,
}
peerDependencies:
async-validator: ^4
axios: ^1
- change-case: ^4
- drauu: ^0.3
+ change-case: ^5
+ drauu: ^0.4
focus-trap: ^7
- fuse.js: ^6
+ fuse.js: ^7
idb-keyval: ^6
- jwt-decode: ^3
+ jwt-decode: ^4
nprogress: ^0.2
qrcode: ^1.5
sortablejs: ^1
- universal-cookie: ^6
+ universal-cookie: ^7
peerDependenciesMeta:
async-validator:
optional: true
@@ -730,28 +803,53 @@ packages:
universal-cookie:
optional: true
- "@vueuse/metadata@10.11.0":
+ "@vueuse/metadata@11.3.0":
+ resolution:
+ {
+ integrity: sha512-pwDnDspTqtTo2HwfLw4Rp6yywuuBdYnPYDq+mO38ZYKGebCUQC/nVj/PXSiK9HX5otxLz8Fn7ECPbjiRz2CC3g==,
+ }
+
+ "@vueuse/shared@11.3.0":
resolution:
{
- integrity: sha512-kQX7l6l8dVWNqlqyN3ePW3KmjCQO3ZMgXuBMddIu83CmucrsBfXlH+JoviYyRBws/yLTQO8g3Pbw+bdIoVm4oQ==,
+ integrity: sha512-P8gSSWQeucH5821ek2mn/ciCk+MS/zoRKqdQIM3bHq6p7GXDAJLmnRRKmF5F65sAVJIfzQlwR3aDzwCn10s8hA==,
}
- "@vueuse/shared@10.11.0":
+ algoliasearch@5.18.0:
resolution:
{
- integrity: sha512-fyNoIXEq3PfX1L3NkNhtVQUSRtqYwJtJg+Bp9rIzculIZWHTkKSysujrOk2J+NrRulLTQH9+3gGSfYLWSEWU1A==,
+ integrity: sha512-/tfpK2A4FpS0o+S78o3YSdlqXr0MavJIDlFK3XZrlXLy7vaRXJvW5jYg3v5e/wCaF8y0IpMjkYLhoV6QqfpOgw==,
}
+ engines: { node: ">= 14.0.0" }
- algoliasearch@4.24.0:
+ birpc@0.2.19:
resolution:
{
- integrity: sha512-bf0QV/9jVejssFBmz2HQLxUadxk574t4iwjCKp5E7NBzwKkrDEhKPISIIjAU/p6K5qDx3qoeh4+26zWN1jmw3g==,
+ integrity: sha512-5WeXXAvTmitV1RqJFppT5QtUiz2p1mRSYU000Jkft5ZUCLJIk4uQriYNO50HknxKwM6jd8utNc66K1qGIwwWBQ==,
}
- birpc@0.2.17:
+ ccount@2.0.1:
resolution:
{
- integrity: sha512-+hkTxhot+dWsLpp3gia5AkVHIsKlZybNT5gIYiDlNzJrmYPcTM9k5/w2uaj3IPpd7LlEYpmCj4Jj1nC41VhDFg==,
+ integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==,
+ }
+
+ character-entities-html4@2.1.0:
+ resolution:
+ {
+ integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==,
+ }
+
+ character-entities-legacy@3.0.0:
+ resolution:
+ {
+ integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==,
+ }
+
+ comma-separated-tokens@2.0.3:
+ resolution:
+ {
+ integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==,
}
copy-anything@3.0.5:
@@ -767,6 +865,25 @@ packages:
integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==,
}
+ dequal@2.0.3:
+ resolution:
+ {
+ integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==,
+ }
+ engines: { node: ">=6" }
+
+ devlop@1.1.0:
+ resolution:
+ {
+ integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==,
+ }
+
+ emoji-regex-xs@1.0.0:
+ resolution:
+ {
+ integrity: sha512-LRlerrMYoIDrT6jgpeZ2YYl/L8EulRTt5hQcYjy5AInh7HWXKimpqx68aknBFpGL2+/IcogTcaydJEgaTmOpDg==,
+ }
+
entities@4.5.0:
resolution:
{
@@ -788,10 +905,10 @@ packages:
integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==,
}
- focus-trap@7.5.4:
+ focus-trap@7.6.2:
resolution:
{
- integrity: sha512-N7kHdlgsO/v+iD/dMoJKtsSqs5Dz/dXZVebRgJw23LDk+jMi/974zyiOYDziY2JPp8xivq9BmUGwIJMiuSBi7w==,
+ integrity: sha512-9FhUxK1hVju2+AiQIDJ5Dd//9R2n2RAfJ0qfhF4IHGHgcoEUTMpbTeG/zbEuwaiYXfuAH6XE0/aCyxDdRM+W5w==,
}
fsevents@2.3.3:
@@ -802,12 +919,30 @@ packages:
engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 }
os: [darwin]
+ hast-util-to-html@9.0.4:
+ resolution:
+ {
+ integrity: sha512-wxQzXtdbhiwGAUKrnQJXlOPmHnEehzphwkK7aluUPQ+lEc1xefC8pblMgpp2w5ldBTEfveRIrADcrhGIWrlTDA==,
+ }
+
+ hast-util-whitespace@3.0.0:
+ resolution:
+ {
+ integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==,
+ }
+
hookable@5.5.3:
resolution:
{
integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==,
}
+ html-void-elements@3.0.0:
+ resolution:
+ {
+ integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==,
+ }
+
is-what@4.1.16:
resolution:
{
@@ -815,10 +950,10 @@ packages:
}
engines: { node: ">=12.13" }
- magic-string@0.30.11:
+ magic-string@0.30.17:
resolution:
{
- integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==,
+ integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==,
}
mark.js@8.11.1:
@@ -827,10 +962,46 @@ packages:
integrity: sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==,
}
- minisearch@7.1.0:
+ mdast-util-to-hast@13.2.0:
+ resolution:
+ {
+ integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==,
+ }
+
+ micromark-util-character@2.1.1:
+ resolution:
+ {
+ integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==,
+ }
+
+ micromark-util-encode@2.0.1:
+ resolution:
+ {
+ integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==,
+ }
+
+ micromark-util-sanitize-uri@2.0.1:
+ resolution:
+ {
+ integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==,
+ }
+
+ micromark-util-symbol@2.0.1:
+ resolution:
+ {
+ integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==,
+ }
+
+ micromark-util-types@2.0.1:
+ resolution:
+ {
+ integrity: sha512-534m2WhVTddrcKVepwmVEVnUAmtrx9bfIjNoQHRqfnvdaHQiFytEhJoTgpWJvDEXCO5gLTQh3wYC1PgOJA4NSQ==,
+ }
+
+ minisearch@7.1.1:
resolution:
{
- integrity: sha512-tv7c/uefWdEhcu6hvrfTihflgeEi2tN6VV7HJnCjK6VxM75QQJh4t9FwJCsA2EsRS8LCnu3W87CuGPWMocOLCA==,
+ integrity: sha512-b3YZEYCEH4EdCAtYP7OlDyx7FdPwNzuNwLQ34SfJpM9dlbBZzeXndGavTrC+VCiRWomL21SWfMc6SCKO/U2ZNw==,
}
mitt@3.0.1:
@@ -839,57 +1010,87 @@ packages:
integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==,
}
- nanoid@3.3.7:
+ nanoid@3.3.8:
resolution:
{
- integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==,
+ integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==,
}
engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 }
hasBin: true
+ oniguruma-to-es@0.8.1:
+ resolution:
+ {
+ integrity: sha512-dekySTEvCxCj0IgKcA2uUCO/e4ArsqpucDPcX26w9ajx+DvMWLc5eZeJaRQkd7oC/+rwif5gnT900tA34uN9Zw==,
+ }
+
perfect-debounce@1.0.0:
resolution:
{
integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==,
}
- picocolors@1.0.1:
+ picocolors@1.1.1:
resolution:
{
- integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==,
+ integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==,
}
- postcss@8.4.40:
+ postcss@8.4.49:
resolution:
{
- integrity: sha512-YF2kKIUzAofPMpfH6hOi2cGnv/HrUlfucspc7pDyvv7kGdqXrfj8SCl/t8owkEgKEuu8ZcRjSOxFxVLqwChZ2Q==,
+ integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==,
}
engines: { node: ^10 || ^12 || >=14 }
- preact@10.23.1:
+ preact@10.25.3:
resolution:
{
- integrity: sha512-O5UdRsNh4vdZaTieWe3XOgSpdMAmkIYBCT3VhQDlKrzyCm8lUYsk0fmVEvoQQifoOjFRTaHZO69ylrzTW2BH+A==,
+ integrity: sha512-dzQmIFtM970z+fP9ziQ3yG4e3ULIbwZzJ734vaMVUTaKQ2+Ru1Ou/gjshOYVHCcd1rpAelC6ngjvjDXph98unQ==,
}
- prettier@3.3.3:
+ prettier@3.4.2:
resolution:
{
- integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==,
+ integrity: sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==,
}
engines: { node: ">=14" }
hasBin: true
+ property-information@6.5.0:
+ resolution:
+ {
+ integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==,
+ }
+
+ regex-recursion@5.0.0:
+ resolution:
+ {
+ integrity: sha512-UwyOqeobrCCqTXPcsSqH4gDhOjD5cI/b8kjngWgSZbxYh5yVjAwTjO5+hAuPRNiuR70+5RlWSs+U9PVcVcW9Lw==,
+ }
+
+ regex-utilities@2.3.0:
+ resolution:
+ {
+ integrity: sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==,
+ }
+
+ regex@5.0.2:
+ resolution:
+ {
+ integrity: sha512-/pczGbKIQgfTMRV0XjABvc5RzLqQmwqxLHdQao2RTXPk+pmTXB2P0IaUHYdYyk412YLwUIkaeMd5T+RzVgTqnQ==,
+ }
+
rfdc@1.4.1:
resolution:
{
integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==,
}
- rollup@4.19.1:
+ rollup@4.29.1:
resolution:
{
- integrity: sha512-K5vziVlg7hTpYfFBI+91zHBEMo6jafYXpkMlqZjg7/zhIG9iHqazBf4xz9AVdjS9BruRn280ROqLI7G3OFRIlw==,
+ integrity: sha512-RaJ45M/kmJUzSWDs1Nnd5DdV4eerC98idtUOVr6FfKcgxqvjwHmxc5upLF9qZU9EpsVzzhleFahrT3shLuJzIw==,
}
engines: { node: ">=18.0.0", npm: ">=8.0.0" }
hasBin: true
@@ -900,19 +1101,25 @@ packages:
integrity: sha512-ch2sPCUDD4sbPQdknVl9ALSi9H7VyoeVbsxznYz6QV55jJ8CI3EtwpO1i84keN4+hF5IeHWIeGvc08530JkVXQ==,
}
- shiki@1.12.0:
+ shiki@1.24.4:
resolution:
{
- integrity: sha512-BuAxWOm5JhRcbSOl7XCei8wGjgJJonnV0oipUupPY58iULxUGyHhW5CF+9FRMuM1pcJ5cGEJGll1LusX6FwpPA==,
+ integrity: sha512-aVGSFAOAr1v26Hh/+GBIsRVDWJ583XYV7CuNURKRWh9gpGv4OdbisZGq96B9arMYTZhTQkmRF5BrShOSTvNqhw==,
}
- source-map-js@1.2.0:
+ source-map-js@1.2.1:
resolution:
{
- integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==,
+ integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==,
}
engines: { node: ">=0.10.0" }
+ space-separated-tokens@2.0.2:
+ resolution:
+ {
+ integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==,
+ }
+
speakingurl@14.0.1:
resolution:
{
@@ -920,10 +1127,16 @@ packages:
}
engines: { node: ">=0.10.0" }
- superjson@2.2.1:
+ stringify-entities@4.0.4:
resolution:
{
- integrity: sha512-8iGv75BYOa0xRJHK5vRLEjE2H/i4lulTjzpUXic3Eg8akftYjkmQDa8JARQ42rlczXyFR3IeRoeFCc7RxHsYZA==,
+ integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==,
+ }
+
+ superjson@2.2.2:
+ resolution:
+ {
+ integrity: sha512-5JRxVqC8I8NuOUjzBbvVJAKNM8qoVuH0O77h4WInc/qC2q5IreqKxYwgkga3PfA22OayK2ikceb/B26dztPl+Q==,
}
engines: { node: ">=16" }
@@ -933,17 +1146,58 @@ packages:
integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==,
}
- to-fast-properties@2.0.0:
+ trim-lines@3.0.1:
+ resolution:
+ {
+ integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==,
+ }
+
+ unist-util-is@6.0.0:
+ resolution:
+ {
+ integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==,
+ }
+
+ unist-util-position@5.0.0:
+ resolution:
+ {
+ integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==,
+ }
+
+ unist-util-stringify-position@4.0.0:
resolution:
{
- integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==,
+ integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==,
}
- engines: { node: ">=4" }
- vite@5.3.5:
+ unist-util-visit-parents@6.0.1:
resolution:
{
- integrity: sha512-MdjglKR6AQXQb9JGiS7Rc2wC6uMjcm7Go/NHNO63EwiJXfuk9PgqiP/n5IDJCziMkfw9n4Ubp7lttNwz+8ZVKA==,
+ integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==,
+ }
+
+ unist-util-visit@5.0.0:
+ resolution:
+ {
+ integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==,
+ }
+
+ vfile-message@4.0.2:
+ resolution:
+ {
+ integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==,
+ }
+
+ vfile@6.0.3:
+ resolution:
+ {
+ integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==,
+ }
+
+ vite@5.4.11:
+ resolution:
+ {
+ integrity: sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==,
}
engines: { node: ^18.0.0 || >=20.0.0 }
hasBin: true
@@ -952,6 +1206,7 @@ packages:
less: "*"
lightningcss: ^1.21.0
sass: "*"
+ sass-embedded: "*"
stylus: "*"
sugarss: "*"
terser: ^5.4.0
@@ -964,6 +1219,8 @@ packages:
optional: true
sass:
optional: true
+ sass-embedded:
+ optional: true
stylus:
optional: true
sugarss:
@@ -971,10 +1228,10 @@ packages:
terser:
optional: true
- vitepress@1.3.1:
+ vitepress@1.5.0:
resolution:
{
- integrity: sha512-soZDpg2rRVJNIM/IYMNDPPr+zTHDA5RbLDHAxacRu+Q9iZ2GwSR0QSUlLs+aEZTkG0SOX1dc8RmUYwyuxK8dfQ==,
+ integrity: sha512-q4Q/G2zjvynvizdB3/bupdYkCJe2umSAMv9Ju4d92E6/NXJ59z70xB0q5p/4lpRyAwflDsbwy1mLV9Q5+nlB+g==,
}
hasBin: true
peerDependencies:
@@ -1000,10 +1257,10 @@ packages:
"@vue/composition-api":
optional: true
- vue@3.4.34:
+ vue@3.5.13:
resolution:
{
- integrity: sha512-VZze05HWlA3ItreQ/ka7Sx7PoD0/3St8FEiSlSTVgb6l4hL+RjtP2/8g5WQBzZgyf8WG2f+g1bXzC7zggLhAJA==,
+ integrity: sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==,
}
peerDependencies:
typescript: "*"
@@ -1011,131 +1268,137 @@ packages:
typescript:
optional: true
+ zwitch@2.0.4:
+ resolution:
+ {
+ integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==,
+ }
+
snapshots:
- "@algolia/autocomplete-core@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.15.0)":
+ "@algolia/autocomplete-core@1.17.7(@algolia/client-search@5.18.0)(algoliasearch@5.18.0)(search-insights@2.15.0)":
dependencies:
- "@algolia/autocomplete-plugin-algolia-insights": 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.15.0)
- "@algolia/autocomplete-shared": 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)
+ "@algolia/autocomplete-plugin-algolia-insights": 1.17.7(@algolia/client-search@5.18.0)(algoliasearch@5.18.0)(search-insights@2.15.0)
+ "@algolia/autocomplete-shared": 1.17.7(@algolia/client-search@5.18.0)(algoliasearch@5.18.0)
transitivePeerDependencies:
- "@algolia/client-search"
- algoliasearch
- search-insights
- "@algolia/autocomplete-plugin-algolia-insights@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.15.0)":
+ "@algolia/autocomplete-plugin-algolia-insights@1.17.7(@algolia/client-search@5.18.0)(algoliasearch@5.18.0)(search-insights@2.15.0)":
dependencies:
- "@algolia/autocomplete-shared": 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)
+ "@algolia/autocomplete-shared": 1.17.7(@algolia/client-search@5.18.0)(algoliasearch@5.18.0)
search-insights: 2.15.0
transitivePeerDependencies:
- "@algolia/client-search"
- algoliasearch
- "@algolia/autocomplete-preset-algolia@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)":
+ "@algolia/autocomplete-preset-algolia@1.17.7(@algolia/client-search@5.18.0)(algoliasearch@5.18.0)":
dependencies:
- "@algolia/autocomplete-shared": 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)
- "@algolia/client-search": 4.24.0
- algoliasearch: 4.24.0
+ "@algolia/autocomplete-shared": 1.17.7(@algolia/client-search@5.18.0)(algoliasearch@5.18.0)
+ "@algolia/client-search": 5.18.0
+ algoliasearch: 5.18.0
- "@algolia/autocomplete-shared@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)":
+ "@algolia/autocomplete-shared@1.17.7(@algolia/client-search@5.18.0)(algoliasearch@5.18.0)":
dependencies:
- "@algolia/client-search": 4.24.0
- algoliasearch: 4.24.0
+ "@algolia/client-search": 5.18.0
+ algoliasearch: 5.18.0
- "@algolia/cache-browser-local-storage@4.24.0":
+ "@algolia/client-abtesting@5.18.0":
dependencies:
- "@algolia/cache-common": 4.24.0
-
- "@algolia/cache-common@4.24.0": {}
+ "@algolia/client-common": 5.18.0
+ "@algolia/requester-browser-xhr": 5.18.0
+ "@algolia/requester-fetch": 5.18.0
+ "@algolia/requester-node-http": 5.18.0
- "@algolia/cache-in-memory@4.24.0":
+ "@algolia/client-analytics@5.18.0":
dependencies:
- "@algolia/cache-common": 4.24.0
+ "@algolia/client-common": 5.18.0
+ "@algolia/requester-browser-xhr": 5.18.0
+ "@algolia/requester-fetch": 5.18.0
+ "@algolia/requester-node-http": 5.18.0
- "@algolia/client-account@4.24.0":
- dependencies:
- "@algolia/client-common": 4.24.0
- "@algolia/client-search": 4.24.0
- "@algolia/transporter": 4.24.0
+ "@algolia/client-common@5.18.0": {}
- "@algolia/client-analytics@4.24.0":
+ "@algolia/client-insights@5.18.0":
dependencies:
- "@algolia/client-common": 4.24.0
- "@algolia/client-search": 4.24.0
- "@algolia/requester-common": 4.24.0
- "@algolia/transporter": 4.24.0
+ "@algolia/client-common": 5.18.0
+ "@algolia/requester-browser-xhr": 5.18.0
+ "@algolia/requester-fetch": 5.18.0
+ "@algolia/requester-node-http": 5.18.0
- "@algolia/client-common@4.24.0":
+ "@algolia/client-personalization@5.18.0":
dependencies:
- "@algolia/requester-common": 4.24.0
- "@algolia/transporter": 4.24.0
+ "@algolia/client-common": 5.18.0
+ "@algolia/requester-browser-xhr": 5.18.0
+ "@algolia/requester-fetch": 5.18.0
+ "@algolia/requester-node-http": 5.18.0
- "@algolia/client-personalization@4.24.0":
+ "@algolia/client-query-suggestions@5.18.0":
dependencies:
- "@algolia/client-common": 4.24.0
- "@algolia/requester-common": 4.24.0
- "@algolia/transporter": 4.24.0
+ "@algolia/client-common": 5.18.0
+ "@algolia/requester-browser-xhr": 5.18.0
+ "@algolia/requester-fetch": 5.18.0
+ "@algolia/requester-node-http": 5.18.0
- "@algolia/client-search@4.24.0":
+ "@algolia/client-search@5.18.0":
dependencies:
- "@algolia/client-common": 4.24.0
- "@algolia/requester-common": 4.24.0
- "@algolia/transporter": 4.24.0
-
- "@algolia/logger-common@4.24.0": {}
+ "@algolia/client-common": 5.18.0
+ "@algolia/requester-browser-xhr": 5.18.0
+ "@algolia/requester-fetch": 5.18.0
+ "@algolia/requester-node-http": 5.18.0
- "@algolia/logger-console@4.24.0":
+ "@algolia/ingestion@1.18.0":
dependencies:
- "@algolia/logger-common": 4.24.0
+ "@algolia/client-common": 5.18.0
+ "@algolia/requester-browser-xhr": 5.18.0
+ "@algolia/requester-fetch": 5.18.0
+ "@algolia/requester-node-http": 5.18.0
- "@algolia/recommend@4.24.0":
+ "@algolia/monitoring@1.18.0":
dependencies:
- "@algolia/cache-browser-local-storage": 4.24.0
- "@algolia/cache-common": 4.24.0
- "@algolia/cache-in-memory": 4.24.0
- "@algolia/client-common": 4.24.0
- "@algolia/client-search": 4.24.0
- "@algolia/logger-common": 4.24.0
- "@algolia/logger-console": 4.24.0
- "@algolia/requester-browser-xhr": 4.24.0
- "@algolia/requester-common": 4.24.0
- "@algolia/requester-node-http": 4.24.0
- "@algolia/transporter": 4.24.0
+ "@algolia/client-common": 5.18.0
+ "@algolia/requester-browser-xhr": 5.18.0
+ "@algolia/requester-fetch": 5.18.0
+ "@algolia/requester-node-http": 5.18.0
- "@algolia/requester-browser-xhr@4.24.0":
+ "@algolia/recommend@5.18.0":
dependencies:
- "@algolia/requester-common": 4.24.0
+ "@algolia/client-common": 5.18.0
+ "@algolia/requester-browser-xhr": 5.18.0
+ "@algolia/requester-fetch": 5.18.0
+ "@algolia/requester-node-http": 5.18.0
- "@algolia/requester-common@4.24.0": {}
+ "@algolia/requester-browser-xhr@5.18.0":
+ dependencies:
+ "@algolia/client-common": 5.18.0
- "@algolia/requester-node-http@4.24.0":
+ "@algolia/requester-fetch@5.18.0":
dependencies:
- "@algolia/requester-common": 4.24.0
+ "@algolia/client-common": 5.18.0
- "@algolia/transporter@4.24.0":
+ "@algolia/requester-node-http@5.18.0":
dependencies:
- "@algolia/cache-common": 4.24.0
- "@algolia/logger-common": 4.24.0
- "@algolia/requester-common": 4.24.0
+ "@algolia/client-common": 5.18.0
- "@babel/helper-string-parser@7.24.8": {}
+ "@babel/helper-string-parser@7.25.9": {}
- "@babel/helper-validator-identifier@7.24.7": {}
+ "@babel/helper-validator-identifier@7.25.9": {}
- "@babel/parser@7.25.0":
+ "@babel/parser@7.26.3":
dependencies:
- "@babel/types": 7.25.0
+ "@babel/types": 7.26.3
- "@babel/types@7.25.0":
+ "@babel/types@7.26.3":
dependencies:
- "@babel/helper-string-parser": 7.24.8
- "@babel/helper-validator-identifier": 7.24.7
- to-fast-properties: 2.0.0
+ "@babel/helper-string-parser": 7.25.9
+ "@babel/helper-validator-identifier": 7.25.9
- "@docsearch/css@3.6.1": {}
+ "@docsearch/css@3.8.2": {}
- "@docsearch/js@3.6.1(@algolia/client-search@4.24.0)(search-insights@2.15.0)":
+ "@docsearch/js@3.8.2(@algolia/client-search@5.18.0)(search-insights@2.15.0)":
dependencies:
- "@docsearch/react": 3.6.1(@algolia/client-search@4.24.0)(search-insights@2.15.0)
- preact: 10.23.1
+ "@docsearch/react": 3.8.2(@algolia/client-search@5.18.0)(search-insights@2.15.0)
+ preact: 10.25.3
transitivePeerDependencies:
- "@algolia/client-search"
- "@types/react"
@@ -1143,12 +1406,12 @@ snapshots:
- react-dom
- search-insights
- "@docsearch/react@3.6.1(@algolia/client-search@4.24.0)(search-insights@2.15.0)":
+ "@docsearch/react@3.8.2(@algolia/client-search@5.18.0)(search-insights@2.15.0)":
dependencies:
- "@algolia/autocomplete-core": 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.15.0)
- "@algolia/autocomplete-preset-algolia": 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)
- "@docsearch/css": 3.6.1
- algoliasearch: 4.24.0
+ "@algolia/autocomplete-core": 1.17.7(@algolia/client-search@5.18.0)(algoliasearch@5.18.0)(search-insights@2.15.0)
+ "@algolia/autocomplete-preset-algolia": 1.17.7(@algolia/client-search@5.18.0)(algoliasearch@5.18.0)
+ "@docsearch/css": 3.8.2
+ algoliasearch: 5.18.0
optionalDependencies:
search-insights: 2.15.0
transitivePeerDependencies:
@@ -1223,69 +1486,107 @@ snapshots:
"@esbuild/win32-x64@0.21.5":
optional: true
+ "@iconify-json/simple-icons@1.2.16":
+ dependencies:
+ "@iconify/types": 2.0.0
+
+ "@iconify/types@2.0.0": {}
+
"@jridgewell/sourcemap-codec@1.5.0": {}
- "@rollup/rollup-android-arm-eabi@4.19.1":
+ "@rollup/rollup-android-arm-eabi@4.29.1":
+ optional: true
+
+ "@rollup/rollup-android-arm64@4.29.1":
+ optional: true
+
+ "@rollup/rollup-darwin-arm64@4.29.1":
optional: true
- "@rollup/rollup-android-arm64@4.19.1":
+ "@rollup/rollup-darwin-x64@4.29.1":
optional: true
- "@rollup/rollup-darwin-arm64@4.19.1":
+ "@rollup/rollup-freebsd-arm64@4.29.1":
optional: true
- "@rollup/rollup-darwin-x64@4.19.1":
+ "@rollup/rollup-freebsd-x64@4.29.1":
optional: true
- "@rollup/rollup-linux-arm-gnueabihf@4.19.1":
+ "@rollup/rollup-linux-arm-gnueabihf@4.29.1":
optional: true
- "@rollup/rollup-linux-arm-musleabihf@4.19.1":
+ "@rollup/rollup-linux-arm-musleabihf@4.29.1":
optional: true
- "@rollup/rollup-linux-arm64-gnu@4.19.1":
+ "@rollup/rollup-linux-arm64-gnu@4.29.1":
optional: true
- "@rollup/rollup-linux-arm64-musl@4.19.1":
+ "@rollup/rollup-linux-arm64-musl@4.29.1":
optional: true
- "@rollup/rollup-linux-powerpc64le-gnu@4.19.1":
+ "@rollup/rollup-linux-loongarch64-gnu@4.29.1":
optional: true
- "@rollup/rollup-linux-riscv64-gnu@4.19.1":
+ "@rollup/rollup-linux-powerpc64le-gnu@4.29.1":
optional: true
- "@rollup/rollup-linux-s390x-gnu@4.19.1":
+ "@rollup/rollup-linux-riscv64-gnu@4.29.1":
optional: true
- "@rollup/rollup-linux-x64-gnu@4.19.1":
+ "@rollup/rollup-linux-s390x-gnu@4.29.1":
optional: true
- "@rollup/rollup-linux-x64-musl@4.19.1":
+ "@rollup/rollup-linux-x64-gnu@4.29.1":
optional: true
- "@rollup/rollup-win32-arm64-msvc@4.19.1":
+ "@rollup/rollup-linux-x64-musl@4.29.1":
optional: true
- "@rollup/rollup-win32-ia32-msvc@4.19.1":
+ "@rollup/rollup-win32-arm64-msvc@4.29.1":
optional: true
- "@rollup/rollup-win32-x64-msvc@4.19.1":
+ "@rollup/rollup-win32-ia32-msvc@4.29.1":
optional: true
- "@shikijs/core@1.12.0":
+ "@rollup/rollup-win32-x64-msvc@4.29.1":
+ optional: true
+
+ "@shikijs/core@1.24.4":
dependencies:
+ "@shikijs/engine-javascript": 1.24.4
+ "@shikijs/engine-oniguruma": 1.24.4
+ "@shikijs/types": 1.24.4
+ "@shikijs/vscode-textmate": 9.3.1
"@types/hast": 3.0.4
+ hast-util-to-html: 9.0.4
+
+ "@shikijs/engine-javascript@1.24.4":
+ dependencies:
+ "@shikijs/types": 1.24.4
+ "@shikijs/vscode-textmate": 9.3.1
+ oniguruma-to-es: 0.8.1
+
+ "@shikijs/engine-oniguruma@1.24.4":
+ dependencies:
+ "@shikijs/types": 1.24.4
+ "@shikijs/vscode-textmate": 9.3.1
+
+ "@shikijs/transformers@1.24.4":
+ dependencies:
+ shiki: 1.24.4
- "@shikijs/transformers@1.12.0":
+ "@shikijs/types@1.24.4":
dependencies:
- shiki: 1.12.0
+ "@shikijs/vscode-textmate": 9.3.1
+ "@types/hast": 3.0.4
+
+ "@shikijs/vscode-textmate@9.3.1": {}
- "@types/estree@1.0.5": {}
+ "@types/estree@1.0.6": {}
"@types/hast@3.0.4":
dependencies:
- "@types/unist": 3.0.2
+ "@types/unist": 3.0.3
"@types/linkify-it@5.0.0": {}
@@ -1294,138 +1595,150 @@ snapshots:
"@types/linkify-it": 5.0.0
"@types/mdurl": 2.0.0
+ "@types/mdast@4.0.4":
+ dependencies:
+ "@types/unist": 3.0.3
+
"@types/mdurl@2.0.0": {}
- "@types/unist@3.0.2": {}
+ "@types/unist@3.0.3": {}
"@types/web-bluetooth@0.0.20": {}
- "@vitejs/plugin-vue@5.1.1(vite@5.3.5)(vue@3.4.34)":
+ "@ungap/structured-clone@1.2.1": {}
+
+ "@vitejs/plugin-vue@5.2.1(vite@5.4.11)(vue@3.5.13)":
dependencies:
- vite: 5.3.5
- vue: 3.4.34
+ vite: 5.4.11
+ vue: 3.5.13
- "@vue/compiler-core@3.4.34":
+ "@vue/compiler-core@3.5.13":
dependencies:
- "@babel/parser": 7.25.0
- "@vue/shared": 3.4.34
+ "@babel/parser": 7.26.3
+ "@vue/shared": 3.5.13
entities: 4.5.0
estree-walker: 2.0.2
- source-map-js: 1.2.0
+ source-map-js: 1.2.1
- "@vue/compiler-dom@3.4.34":
+ "@vue/compiler-dom@3.5.13":
dependencies:
- "@vue/compiler-core": 3.4.34
- "@vue/shared": 3.4.34
+ "@vue/compiler-core": 3.5.13
+ "@vue/shared": 3.5.13
- "@vue/compiler-sfc@3.4.34":
+ "@vue/compiler-sfc@3.5.13":
dependencies:
- "@babel/parser": 7.25.0
- "@vue/compiler-core": 3.4.34
- "@vue/compiler-dom": 3.4.34
- "@vue/compiler-ssr": 3.4.34
- "@vue/shared": 3.4.34
+ "@babel/parser": 7.26.3
+ "@vue/compiler-core": 3.5.13
+ "@vue/compiler-dom": 3.5.13
+ "@vue/compiler-ssr": 3.5.13
+ "@vue/shared": 3.5.13
estree-walker: 2.0.2
- magic-string: 0.30.11
- postcss: 8.4.40
- source-map-js: 1.2.0
+ magic-string: 0.30.17
+ postcss: 8.4.49
+ source-map-js: 1.2.1
- "@vue/compiler-ssr@3.4.34":
+ "@vue/compiler-ssr@3.5.13":
dependencies:
- "@vue/compiler-dom": 3.4.34
- "@vue/shared": 3.4.34
+ "@vue/compiler-dom": 3.5.13
+ "@vue/shared": 3.5.13
- "@vue/devtools-api@7.3.7":
+ "@vue/devtools-api@7.6.8":
dependencies:
- "@vue/devtools-kit": 7.3.7
+ "@vue/devtools-kit": 7.6.8
- "@vue/devtools-kit@7.3.7":
+ "@vue/devtools-kit@7.6.8":
dependencies:
- "@vue/devtools-shared": 7.3.7
- birpc: 0.2.17
+ "@vue/devtools-shared": 7.6.8
+ birpc: 0.2.19
hookable: 5.5.3
mitt: 3.0.1
perfect-debounce: 1.0.0
speakingurl: 14.0.1
- superjson: 2.2.1
+ superjson: 2.2.2
- "@vue/devtools-shared@7.3.7":
+ "@vue/devtools-shared@7.6.8":
dependencies:
rfdc: 1.4.1
- "@vue/reactivity@3.4.34":
+ "@vue/reactivity@3.5.13":
dependencies:
- "@vue/shared": 3.4.34
+ "@vue/shared": 3.5.13
- "@vue/runtime-core@3.4.34":
+ "@vue/runtime-core@3.5.13":
dependencies:
- "@vue/reactivity": 3.4.34
- "@vue/shared": 3.4.34
+ "@vue/reactivity": 3.5.13
+ "@vue/shared": 3.5.13
- "@vue/runtime-dom@3.4.34":
+ "@vue/runtime-dom@3.5.13":
dependencies:
- "@vue/reactivity": 3.4.34
- "@vue/runtime-core": 3.4.34
- "@vue/shared": 3.4.34
+ "@vue/reactivity": 3.5.13
+ "@vue/runtime-core": 3.5.13
+ "@vue/shared": 3.5.13
csstype: 3.1.3
- "@vue/server-renderer@3.4.34(vue@3.4.34)":
+ "@vue/server-renderer@3.5.13(vue@3.5.13)":
dependencies:
- "@vue/compiler-ssr": 3.4.34
- "@vue/shared": 3.4.34
- vue: 3.4.34
+ "@vue/compiler-ssr": 3.5.13
+ "@vue/shared": 3.5.13
+ vue: 3.5.13
- "@vue/shared@3.4.34": {}
+ "@vue/shared@3.5.13": {}
- "@vueuse/core@10.11.0(vue@3.4.34)":
+ "@vueuse/core@11.3.0(vue@3.5.13)":
dependencies:
"@types/web-bluetooth": 0.0.20
- "@vueuse/metadata": 10.11.0
- "@vueuse/shared": 10.11.0(vue@3.4.34)
- vue-demi: 0.14.10(vue@3.4.34)
+ "@vueuse/metadata": 11.3.0
+ "@vueuse/shared": 11.3.0(vue@3.5.13)
+ vue-demi: 0.14.10(vue@3.5.13)
transitivePeerDependencies:
- "@vue/composition-api"
- vue
- "@vueuse/integrations@10.11.0(focus-trap@7.5.4)(vue@3.4.34)":
+ "@vueuse/integrations@11.3.0(focus-trap@7.6.2)(vue@3.5.13)":
dependencies:
- "@vueuse/core": 10.11.0(vue@3.4.34)
- "@vueuse/shared": 10.11.0(vue@3.4.34)
- vue-demi: 0.14.10(vue@3.4.34)
+ "@vueuse/core": 11.3.0(vue@3.5.13)
+ "@vueuse/shared": 11.3.0(vue@3.5.13)
+ vue-demi: 0.14.10(vue@3.5.13)
optionalDependencies:
- focus-trap: 7.5.4
+ focus-trap: 7.6.2
transitivePeerDependencies:
- "@vue/composition-api"
- vue
- "@vueuse/metadata@10.11.0": {}
+ "@vueuse/metadata@11.3.0": {}
- "@vueuse/shared@10.11.0(vue@3.4.34)":
+ "@vueuse/shared@11.3.0(vue@3.5.13)":
dependencies:
- vue-demi: 0.14.10(vue@3.4.34)
+ vue-demi: 0.14.10(vue@3.5.13)
transitivePeerDependencies:
- "@vue/composition-api"
- vue
- algoliasearch@4.24.0:
- dependencies:
- "@algolia/cache-browser-local-storage": 4.24.0
- "@algolia/cache-common": 4.24.0
- "@algolia/cache-in-memory": 4.24.0
- "@algolia/client-account": 4.24.0
- "@algolia/client-analytics": 4.24.0
- "@algolia/client-common": 4.24.0
- "@algolia/client-personalization": 4.24.0
- "@algolia/client-search": 4.24.0
- "@algolia/logger-common": 4.24.0
- "@algolia/logger-console": 4.24.0
- "@algolia/recommend": 4.24.0
- "@algolia/requester-browser-xhr": 4.24.0
- "@algolia/requester-common": 4.24.0
- "@algolia/requester-node-http": 4.24.0
- "@algolia/transporter": 4.24.0
-
- birpc@0.2.17: {}
+ algoliasearch@5.18.0:
+ dependencies:
+ "@algolia/client-abtesting": 5.18.0
+ "@algolia/client-analytics": 5.18.0
+ "@algolia/client-common": 5.18.0
+ "@algolia/client-insights": 5.18.0
+ "@algolia/client-personalization": 5.18.0
+ "@algolia/client-query-suggestions": 5.18.0
+ "@algolia/client-search": 5.18.0
+ "@algolia/ingestion": 1.18.0
+ "@algolia/monitoring": 1.18.0
+ "@algolia/recommend": 5.18.0
+ "@algolia/requester-browser-xhr": 5.18.0
+ "@algolia/requester-fetch": 5.18.0
+ "@algolia/requester-node-http": 5.18.0
+
+ birpc@0.2.19: {}
+
+ ccount@2.0.1: {}
+
+ character-entities-html4@2.1.0: {}
+
+ character-entities-legacy@3.0.0: {}
+
+ comma-separated-tokens@2.0.3: {}
copy-anything@3.0.5:
dependencies:
@@ -1433,6 +1746,14 @@ snapshots:
csstype@3.1.3: {}
+ dequal@2.0.3: {}
+
+ devlop@1.1.0:
+ dependencies:
+ dequal: 2.0.3
+
+ emoji-regex-xs@1.0.0: {}
+
entities@4.5.0: {}
esbuild@0.21.5:
@@ -1463,114 +1784,230 @@ snapshots:
estree-walker@2.0.2: {}
- focus-trap@7.5.4:
+ focus-trap@7.6.2:
dependencies:
tabbable: 6.2.0
fsevents@2.3.3:
optional: true
+ hast-util-to-html@9.0.4:
+ dependencies:
+ "@types/hast": 3.0.4
+ "@types/unist": 3.0.3
+ ccount: 2.0.1
+ comma-separated-tokens: 2.0.3
+ hast-util-whitespace: 3.0.0
+ html-void-elements: 3.0.0
+ mdast-util-to-hast: 13.2.0
+ property-information: 6.5.0
+ space-separated-tokens: 2.0.2
+ stringify-entities: 4.0.4
+ zwitch: 2.0.4
+
+ hast-util-whitespace@3.0.0:
+ dependencies:
+ "@types/hast": 3.0.4
+
hookable@5.5.3: {}
+ html-void-elements@3.0.0: {}
+
is-what@4.1.16: {}
- magic-string@0.30.11:
+ magic-string@0.30.17:
dependencies:
"@jridgewell/sourcemap-codec": 1.5.0
mark.js@8.11.1: {}
- minisearch@7.1.0: {}
+ mdast-util-to-hast@13.2.0:
+ dependencies:
+ "@types/hast": 3.0.4
+ "@types/mdast": 4.0.4
+ "@ungap/structured-clone": 1.2.1
+ devlop: 1.1.0
+ micromark-util-sanitize-uri: 2.0.1
+ trim-lines: 3.0.1
+ unist-util-position: 5.0.0
+ unist-util-visit: 5.0.0
+ vfile: 6.0.3
+
+ micromark-util-character@2.1.1:
+ dependencies:
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.1
+
+ micromark-util-encode@2.0.1: {}
+
+ micromark-util-sanitize-uri@2.0.1:
+ dependencies:
+ micromark-util-character: 2.1.1
+ micromark-util-encode: 2.0.1
+ micromark-util-symbol: 2.0.1
+
+ micromark-util-symbol@2.0.1: {}
+
+ micromark-util-types@2.0.1: {}
+
+ minisearch@7.1.1: {}
mitt@3.0.1: {}
- nanoid@3.3.7: {}
+ nanoid@3.3.8: {}
+
+ oniguruma-to-es@0.8.1:
+ dependencies:
+ emoji-regex-xs: 1.0.0
+ regex: 5.0.2
+ regex-recursion: 5.0.0
perfect-debounce@1.0.0: {}
- picocolors@1.0.1: {}
+ picocolors@1.1.1: {}
- postcss@8.4.40:
+ postcss@8.4.49:
dependencies:
- nanoid: 3.3.7
- picocolors: 1.0.1
- source-map-js: 1.2.0
+ nanoid: 3.3.8
+ picocolors: 1.1.1
+ source-map-js: 1.2.1
- preact@10.23.1: {}
+ preact@10.25.3: {}
- prettier@3.3.3: {}
+ prettier@3.4.2: {}
+
+ property-information@6.5.0: {}
+
+ regex-recursion@5.0.0:
+ dependencies:
+ regex-utilities: 2.3.0
+
+ regex-utilities@2.3.0: {}
+
+ regex@5.0.2:
+ dependencies:
+ regex-utilities: 2.3.0
rfdc@1.4.1: {}
- rollup@4.19.1:
+ rollup@4.29.1:
dependencies:
- "@types/estree": 1.0.5
+ "@types/estree": 1.0.6
optionalDependencies:
- "@rollup/rollup-android-arm-eabi": 4.19.1
- "@rollup/rollup-android-arm64": 4.19.1
- "@rollup/rollup-darwin-arm64": 4.19.1
- "@rollup/rollup-darwin-x64": 4.19.1
- "@rollup/rollup-linux-arm-gnueabihf": 4.19.1
- "@rollup/rollup-linux-arm-musleabihf": 4.19.1
- "@rollup/rollup-linux-arm64-gnu": 4.19.1
- "@rollup/rollup-linux-arm64-musl": 4.19.1
- "@rollup/rollup-linux-powerpc64le-gnu": 4.19.1
- "@rollup/rollup-linux-riscv64-gnu": 4.19.1
- "@rollup/rollup-linux-s390x-gnu": 4.19.1
- "@rollup/rollup-linux-x64-gnu": 4.19.1
- "@rollup/rollup-linux-x64-musl": 4.19.1
- "@rollup/rollup-win32-arm64-msvc": 4.19.1
- "@rollup/rollup-win32-ia32-msvc": 4.19.1
- "@rollup/rollup-win32-x64-msvc": 4.19.1
+ "@rollup/rollup-android-arm-eabi": 4.29.1
+ "@rollup/rollup-android-arm64": 4.29.1
+ "@rollup/rollup-darwin-arm64": 4.29.1
+ "@rollup/rollup-darwin-x64": 4.29.1
+ "@rollup/rollup-freebsd-arm64": 4.29.1
+ "@rollup/rollup-freebsd-x64": 4.29.1
+ "@rollup/rollup-linux-arm-gnueabihf": 4.29.1
+ "@rollup/rollup-linux-arm-musleabihf": 4.29.1
+ "@rollup/rollup-linux-arm64-gnu": 4.29.1
+ "@rollup/rollup-linux-arm64-musl": 4.29.1
+ "@rollup/rollup-linux-loongarch64-gnu": 4.29.1
+ "@rollup/rollup-linux-powerpc64le-gnu": 4.29.1
+ "@rollup/rollup-linux-riscv64-gnu": 4.29.1
+ "@rollup/rollup-linux-s390x-gnu": 4.29.1
+ "@rollup/rollup-linux-x64-gnu": 4.29.1
+ "@rollup/rollup-linux-x64-musl": 4.29.1
+ "@rollup/rollup-win32-arm64-msvc": 4.29.1
+ "@rollup/rollup-win32-ia32-msvc": 4.29.1
+ "@rollup/rollup-win32-x64-msvc": 4.29.1
fsevents: 2.3.3
search-insights@2.15.0: {}
- shiki@1.12.0:
+ shiki@1.24.4:
dependencies:
- "@shikijs/core": 1.12.0
+ "@shikijs/core": 1.24.4
+ "@shikijs/engine-javascript": 1.24.4
+ "@shikijs/engine-oniguruma": 1.24.4
+ "@shikijs/types": 1.24.4
+ "@shikijs/vscode-textmate": 9.3.1
"@types/hast": 3.0.4
- source-map-js@1.2.0: {}
+ source-map-js@1.2.1: {}
+
+ space-separated-tokens@2.0.2: {}
speakingurl@14.0.1: {}
- superjson@2.2.1:
+ stringify-entities@4.0.4:
+ dependencies:
+ character-entities-html4: 2.1.0
+ character-entities-legacy: 3.0.0
+
+ superjson@2.2.2:
dependencies:
copy-anything: 3.0.5
tabbable@6.2.0: {}
- to-fast-properties@2.0.0: {}
+ trim-lines@3.0.1: {}
+
+ unist-util-is@6.0.0:
+ dependencies:
+ "@types/unist": 3.0.3
+
+ unist-util-position@5.0.0:
+ dependencies:
+ "@types/unist": 3.0.3
+
+ unist-util-stringify-position@4.0.0:
+ dependencies:
+ "@types/unist": 3.0.3
+
+ unist-util-visit-parents@6.0.1:
+ dependencies:
+ "@types/unist": 3.0.3
+ unist-util-is: 6.0.0
+
+ unist-util-visit@5.0.0:
+ dependencies:
+ "@types/unist": 3.0.3
+ unist-util-is: 6.0.0
+ unist-util-visit-parents: 6.0.1
+
+ vfile-message@4.0.2:
+ dependencies:
+ "@types/unist": 3.0.3
+ unist-util-stringify-position: 4.0.0
+
+ vfile@6.0.3:
+ dependencies:
+ "@types/unist": 3.0.3
+ vfile-message: 4.0.2
- vite@5.3.5:
+ vite@5.4.11:
dependencies:
esbuild: 0.21.5
- postcss: 8.4.40
- rollup: 4.19.1
+ postcss: 8.4.49
+ rollup: 4.29.1
optionalDependencies:
fsevents: 2.3.3
- vitepress@1.3.1(@algolia/client-search@4.24.0)(postcss@8.4.40)(search-insights@2.15.0):
+ vitepress@1.5.0(@algolia/client-search@5.18.0)(postcss@8.4.49)(search-insights@2.15.0):
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.0
- "@shikijs/transformers": 1.12.0
+ "@docsearch/css": 3.8.2
+ "@docsearch/js": 3.8.2(@algolia/client-search@5.18.0)(search-insights@2.15.0)
+ "@iconify-json/simple-icons": 1.2.16
+ "@shikijs/core": 1.24.4
+ "@shikijs/transformers": 1.24.4
+ "@shikijs/types": 1.24.4
"@types/markdown-it": 14.1.2
- "@vitejs/plugin-vue": 5.1.1(vite@5.3.5)(vue@3.4.34)
- "@vue/devtools-api": 7.3.7
- "@vue/shared": 3.4.34
- "@vueuse/core": 10.11.0(vue@3.4.34)
- "@vueuse/integrations": 10.11.0(focus-trap@7.5.4)(vue@3.4.34)
- focus-trap: 7.5.4
+ "@vitejs/plugin-vue": 5.2.1(vite@5.4.11)(vue@3.5.13)
+ "@vue/devtools-api": 7.6.8
+ "@vue/shared": 3.5.13
+ "@vueuse/core": 11.3.0(vue@3.5.13)
+ "@vueuse/integrations": 11.3.0(focus-trap@7.6.2)(vue@3.5.13)
+ focus-trap: 7.6.2
mark.js: 8.11.1
- minisearch: 7.1.0
- shiki: 1.12.0
- vite: 5.3.5
- vue: 3.4.34
+ minisearch: 7.1.1
+ shiki: 1.24.4
+ vite: 5.4.11
+ vue: 3.5.13
optionalDependencies:
- postcss: 8.4.40
+ postcss: 8.4.49
transitivePeerDependencies:
- "@algolia/client-search"
- "@types/node"
@@ -1590,6 +2027,7 @@ snapshots:
- react
- react-dom
- sass
+ - sass-embedded
- search-insights
- sortablejs
- stylus
@@ -1598,14 +2036,16 @@ snapshots:
- typescript
- universal-cookie
- vue-demi@0.14.10(vue@3.4.34):
+ vue-demi@0.14.10(vue@3.5.13):
dependencies:
- vue: 3.4.34
+ vue: 3.5.13
- vue@3.4.34:
+ vue@3.5.13:
dependencies:
- "@vue/compiler-dom": 3.4.34
- "@vue/compiler-sfc": 3.4.34
- "@vue/runtime-dom": 3.4.34
- "@vue/server-renderer": 3.4.34(vue@3.4.34)
- "@vue/shared": 3.4.34
+ "@vue/compiler-dom": 3.5.13
+ "@vue/compiler-sfc": 3.5.13
+ "@vue/runtime-dom": 3.5.13
+ "@vue/server-renderer": 3.5.13(vue@3.5.13)
+ "@vue/shared": 3.5.13
+
+ zwitch@2.0.4: {}