]> git.ipfire.org Git - thirdparty/vuejs/pinia.git/commitdiff
chore: up deps
authorEduardo San Martin Morote <posva13@gmail.com>
Mon, 21 Nov 2022 21:12:46 +0000 (22:12 +0100)
committerEduardo San Martin Morote <posva13@gmail.com>
Mon, 21 Nov 2022 21:12:46 +0000 (22:12 +0100)
package.json
packages/docs/api/interfaces/pinia.SubscriptionCallbackMutationDirect.md
packages/docs/api/interfaces/pinia.SubscriptionCallbackMutationPatchFunction.md
packages/docs/api/interfaces/pinia.SubscriptionCallbackMutationPatchObject.md
packages/docs/api/interfaces/pinia._StoreOnActionListenerContext.md
packages/docs/api/interfaces/pinia._SubscriptionCallbackMutationBase.md
packages/docs/api/modules/pinia.md
packages/docs/package.json
packages/pinia/package.json
packages/playground/package.json
pnpm-lock.yaml

index e6c3879362ec0ee8316da328e636d140c101819b..529b1e8f6fd4acad8d82814dba57ccca09e53840 100644 (file)
@@ -27,7 +27,7 @@
     "@rollup/plugin-replace": "^4.0.0",
     "@types/lodash.kebabcase": "^4.1.7",
     "@types/node": "^16.18.3",
-    "@vitest/coverage-c8": "^0.24.5",
+    "@vitest/coverage-c8": "^0.25.2",
     "@vue/compiler-sfc": "^3.2.45",
     "@vue/server-renderer": "^3.2.45",
     "c8": "^7.12.0",
     "rollup-plugin-terser": "^7.0.2",
     "rollup-plugin-typescript2": "^0.32.1",
     "semver": "^7.3.8",
-    "typedoc": "^0.23.20",
+    "typedoc": "^0.23.21",
     "typedoc-plugin-markdown": "^3.13.6",
     "typescript": "^4.8.4",
-    "vitest": "^0.24.5",
+    "vitest": "^0.25.2",
     "vue": "^3.2.45",
     "yorkie": "^2.0.0"
   },
index 21af5bd8675b18e10700de4a5b2d67d10ac50480..e73d93291dcffa1d8ef456a4ccf4de97b582aded 100644 (file)
@@ -26,7 +26,13 @@ newValue`.
 
 • **events**: `DebuggerEvent`
 
-DEV ONLY. Different mutation calls.
+🔴 DEV ONLY, DO NOT use for production code. Different mutation calls. Comes from
+https://vuejs.org/guide/extras/reactivity-in-depth.html#reactivity-debugging and allows to track mutations in
+devtools and plugins **during development only**.
+
+#### Overrides
+
+[_SubscriptionCallbackMutationBase](pinia._SubscriptionCallbackMutationBase.md).[events](pinia._SubscriptionCallbackMutationBase.md#events)
 
 ___
 
index 1fc1835aca087079eaf5512f90468318367c2b8c..b70a236b090c49abb5a3b1bd0708edb0b5fe0dbe 100644 (file)
@@ -25,7 +25,13 @@ with a function.
 
 • **events**: `DebuggerEvent`[]
 
-DEV ONLY. Array of all the mutations done inside of the callback.
+🔴 DEV ONLY, DO NOT use for production code. Different mutation calls. Comes from
+https://vuejs.org/guide/extras/reactivity-in-depth.html#reactivity-debugging and allows to track mutations in
+devtools and plugins **during development only**.
+
+#### Overrides
+
+[_SubscriptionCallbackMutationBase](pinia._SubscriptionCallbackMutationBase.md).[events](pinia._SubscriptionCallbackMutationBase.md#events)
 
 ___
 
index 5c4bc78448a7e834ba551e456fb4bd0c9f8efab7..37685c90bbf12cf14ca278be54037ec9ba7822ce 100644 (file)
@@ -31,7 +31,13 @@ with an object.
 
 • **events**: `DebuggerEvent`[]
 
-DEV ONLY. Array for patch calls.
+🔴 DEV ONLY, DO NOT use for production code. Different mutation calls. Comes from
+https://vuejs.org/guide/extras/reactivity-in-depth.html#reactivity-debugging and allows to track mutations in
+devtools and plugins **during development only**.
+
+#### Overrides
+
+[_SubscriptionCallbackMutationBase](pinia._SubscriptionCallbackMutationBase.md).[events](pinia._SubscriptionCallbackMutationBase.md#events)
 
 ___
 
index 8f9a1bc736fc18bbf609ba3711168b63949c27f5..119db1719c57ba23cdd1f9109fe4ae307f24d424 100644 (file)
@@ -72,7 +72,7 @@ ___
 ▸ (`callback`): `void`
 
 Sets up a hook if the action fails. Return `false` to catch the error and
-stop it fro propagating.
+stop it from propagating.
 
 ##### Parameters
 
index 22c4615a25b8515fb30c049ba432c044aad9e4ea..e127b13ef9e3a066e69fd8665442fca944e63f91 100644 (file)
@@ -24,6 +24,16 @@ Base type for the context passed to a subscription callback. Internal type.
 
 ## Properties
 
+### events
+
+• `Optional` **events**: `DebuggerEvent` \| `DebuggerEvent`[]
+
+🔴 DEV ONLY, DO NOT use for production code. Different mutation calls. Comes from
+https://vuejs.org/guide/extras/reactivity-in-depth.html#reactivity-debugging and allows to track mutations in
+devtools and plugins **during development only**.
+
+___
+
 ### storeId
 
 • **storeId**: `string`
index 080d10c45ea2404bcf7700b398f8155c8ae4ed81..e1ec6d36dbe7110e4a271da863dabc6eca7b0714 100644 (file)
@@ -490,7 +490,7 @@ ___
 
 ### \_StoreObject
 
-Ƭ **\_StoreObject**<`S`\>: `S` extends [`StoreDefinition`](../interfaces/pinia.StoreDefinition.md)<infer Ids, infer State, infer Getters, infer Actions\> ? { [Id in \`${Ids}${MapStoresCustomization extends Record<"suffix", string\> ? MapStoresCustomization["suffix"] : "Store"}\`]: Function } : {}
+Ƭ **\_StoreObject**<`S`\>: `S` extends [`StoreDefinition`](../interfaces/pinia.StoreDefinition.md)<infer Ids, infer State, infer Getters, infer Actions\> ? { [Id in \`${Ids}${MapStoresCustomization extends Record<"suffix", infer Suffix extends string\> ? Suffix : "Store"}\`]: Function } : {}
 
 For internal use **only**.
 
@@ -810,38 +810,11 @@ ___
 
 ▸ **mapGetters**<`Id`, `S`, `G`, `A`, `KeyMapper`\>(`useStore`, `keyMapper`): [`_MapStateObjectReturn`](pinia.md#_mapstateobjectreturn)<`Id`, `S`, `G`, `A`, `KeyMapper`\>
 
-Allows using state and getters from one store without using the composition
-API (`setup()`) by generating an object to be spread in the `computed` field
-of a component. The values of the object are the state properties/getters
-while the keys are the names of the resulting computed properties.
-Optionally, you can also pass a custom function that will receive the store
-as its first argument. Note that while it has access to the component
-instance via `this`, it won't be typed.
-
-**`Example`**
+Alias for `mapState()`. You should use `mapState()` instead.
 
-```js
-export default {
-  computed: {
-    // other computed properties
-    // useCounterStore has a state property named `count` and a getter `double`
-    ...mapState(useCounterStore, {
-      n: 'count',
-      triple: store => store.n * 3,
-      // note we can't use an arrow function if we want to use `this`
-      custom(store) {
-        return this.someComponentValue + store.n
-      },
-      doubleN: 'double'
-    })
-  },
+**`Deprecated`**
 
-  created() {
-    this.n // 2
-    this.doubleN // 4
-  }
-}
-```
+use `mapState()` instead.
 
 #### Type parameters
 
@@ -855,10 +828,10 @@ export default {
 
 #### Parameters
 
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `useStore` | [`StoreDefinition`](../interfaces/pinia.StoreDefinition.md)<`Id`, `S`, `G`, `A`\> | store to map from |
-| `keyMapper` | `KeyMapper` | object of state properties or getters |
+| Name | Type |
+| :------ | :------ |
+| `useStore` | [`StoreDefinition`](../interfaces/pinia.StoreDefinition.md)<`Id`, `S`, `G`, `A`\> |
+| `keyMapper` | `KeyMapper` |
 
 #### Returns
 
@@ -866,25 +839,11 @@ export default {
 
 ▸ **mapGetters**<`Id`, `S`, `G`, `A`, `Keys`\>(`useStore`, `keys`): [`_MapStateReturn`](pinia.md#_mapstatereturn)<`S`, `G`, `Keys`\>
 
-Allows using state and getters from one store without using the composition
-API (`setup()`) by generating an object to be spread in the `computed` field
-of a component.
-
-**`Example`**
+Alias for `mapState()`. You should use `mapState()` instead.
 
-```js
-export default {
-  computed: {
-    // other computed properties
-    ...mapState(useCounterStore, ['count', 'double'])
-  },
+**`Deprecated`**
 
-  created() {
-    this.count // 2
-    this.double // 4
-  }
-}
-```
+use `mapState()` instead.
 
 #### Type parameters
 
@@ -898,10 +857,10 @@ export default {
 
 #### Parameters
 
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `useStore` | [`StoreDefinition`](../interfaces/pinia.StoreDefinition.md)<`Id`, `S`, `G`, `A`\> | store to map from |
-| `keys` | readonly `Keys`[] | array of state properties or getters |
+| Name | Type |
+| :------ | :------ |
+| `useStore` | [`StoreDefinition`](../interfaces/pinia.StoreDefinition.md)<`Id`, `S`, `G`, `A`\> |
+| `keys` | readonly `Keys`[] |
 
 #### Returns
 
index 7957a919a418c30773e23ce004a34d544a80ea4b..8bf8268a84084dc213d1083065e40f82ffdbed1a 100644 (file)
@@ -9,7 +9,7 @@
   },
   "dependencies": {
     "@chenfengyuan/vue-countdown": "^2.1.0",
-    "@vueuse/core": "^9.4.0",
+    "@vueuse/core": "^9.5.0",
     "pinia": "workspace:^2.0.18",
     "vitepress": "^0.22.4"
   }
index aeb87df9f53e13f2524b79ea7ff4a6a17180e5e4..a4b6295dfb6ad931b656668af9e230a28fa3549a 100644 (file)
@@ -70,7 +70,7 @@
   "license": "MIT",
   "devDependencies": {
     "@microsoft/api-extractor": "7.33.6",
-    "@vue/test-utils": "^2.2.3"
+    "@vue/test-utils": "^2.2.4"
   },
   "dependencies": {
     "@vue/devtools-api": "^6.4.5",
index f4218752b25684b6e41589686e2259131c761a60..07b28d73898a47aec5d1593e6fa8a3d00b16c60a 100644 (file)
     "vite": "^3.2.4"
   },
   "dependencies": {
-    "@vueuse/core": "^9.4.0",
+    "@vueuse/core": "^9.5.0",
     "mande": "^1.0.1",
     "pinia": "workspace:^2.0.18",
-    "swrv": "^1.0.0-beta.8",
+    "swrv": "^1.0.1",
     "vue-promised": "^2.2.0",
     "vue-router": "^4.1.6"
   }
index 8fc00e986860ac6f17aba88798c56075bb5214e9..0872a31713a9a38426aad979aca2e87ac5713880 100644 (file)
@@ -10,7 +10,7 @@ importers:
       '@rollup/plugin-replace': ^4.0.0
       '@types/lodash.kebabcase': ^4.1.7
       '@types/node': ^16.18.3
-      '@vitest/coverage-c8': ^0.24.5
+      '@vitest/coverage-c8': ^0.25.2
       '@vue/compiler-sfc': ^3.2.45
       '@vue/server-renderer': ^3.2.45
       c8: ^7.12.0
@@ -32,10 +32,10 @@ importers:
       rollup-plugin-terser: ^7.0.2
       rollup-plugin-typescript2: ^0.32.1
       semver: ^7.3.8
-      typedoc: ^0.23.20
+      typedoc: ^0.23.21
       typedoc-plugin-markdown: ^3.13.6
       typescript: ^4.8.4
-      vitest: ^0.24.5
+      vitest: ^0.25.2
       vue: ^3.2.45
       yorkie: ^2.0.0
     devDependencies:
@@ -45,7 +45,7 @@ importers:
       '@rollup/plugin-replace': 4.0.0_rollup@2.79.1
       '@types/lodash.kebabcase': 4.1.7
       '@types/node': 16.18.3
-      '@vitest/coverage-c8': 0.24.5_happy-dom@6.0.4
+      '@vitest/coverage-c8': 0.25.2_happy-dom@6.0.4
       '@vue/compiler-sfc': 3.2.45
       '@vue/server-renderer': 3.2.45_vue@3.2.45
       c8: 7.12.0
@@ -67,22 +67,22 @@ importers:
       rollup-plugin-terser: 7.0.2_rollup@2.79.1
       rollup-plugin-typescript2: 0.32.1_gypgyaqhine6mwjfvh7icfhviq
       semver: 7.3.8
-      typedoc: 0.23.20_typescript@4.8.4
-      typedoc-plugin-markdown: 3.13.6_typedoc@0.23.20
+      typedoc: 0.23.21_typescript@4.8.4
+      typedoc-plugin-markdown: 3.13.6_typedoc@0.23.21
       typescript: 4.8.4
-      vitest: 0.24.5_happy-dom@6.0.4
+      vitest: 0.25.2_happy-dom@6.0.4
       vue: 3.2.45
       yorkie: 2.0.0
 
   packages/docs:
     specifiers:
       '@chenfengyuan/vue-countdown': ^2.1.0
-      '@vueuse/core': ^9.4.0
+      '@vueuse/core': ^9.5.0
       pinia: workspace:^2.0.18
       vitepress: ^0.22.4
     dependencies:
       '@chenfengyuan/vue-countdown': 2.1.0
-      '@vueuse/core': 9.4.0
+      '@vueuse/core': 9.5.0
       pinia: link:../pinia
       vitepress: 0.22.4
 
@@ -111,30 +111,30 @@ importers:
     specifiers:
       '@microsoft/api-extractor': 7.33.6
       '@vue/devtools-api': ^6.4.5
-      '@vue/test-utils': ^2.2.3
+      '@vue/test-utils': ^2.2.4
       vue-demi: '*'
     dependencies:
       '@vue/devtools-api': 6.4.5
       vue-demi: 0.13.11
     devDependencies:
       '@microsoft/api-extractor': 7.33.6
-      '@vue/test-utils': 2.2.3
+      '@vue/test-utils': 2.2.4
 
   packages/playground:
     specifiers:
       '@vitejs/plugin-vue': ^3.2.0
-      '@vueuse/core': ^9.4.0
+      '@vueuse/core': ^9.5.0
       mande: ^1.0.1
       pinia: workspace:^2.0.18
-      swrv: ^1.0.0-beta.8
+      swrv: ^1.0.1
       vite: ^3.2.4
       vue-promised: ^2.2.0
       vue-router: ^4.1.6
     dependencies:
-      '@vueuse/core': 9.4.0
+      '@vueuse/core': 9.5.0
       mande: 1.0.1
       pinia: link:../pinia
-      swrv: 1.0.0-beta.8
+      swrv: 1.0.1
       vue-promised: 2.2.0
       vue-router: 4.1.6
     devDependencies:
@@ -1460,11 +1460,11 @@ packages:
   /@types/chai-subset/1.3.3:
     resolution: {integrity: sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw==}
     dependencies:
-      '@types/chai': 4.3.3
+      '@types/chai': 4.3.4
     dev: true
 
-  /@types/chai/4.3.3:
-    resolution: {integrity: sha512-hC7OMnszpxhZPduX+m+nrx+uFoLkWOMiR4oa/AZF3MuSETYTZmFfJAHqZEM8MVlvfG7BEUcgvtwoCTxBp6hm3g==}
+  /@types/chai/4.3.4:
+    resolution: {integrity: sha512-KnRanxnpfpjUTqTCXslZSEdLfXExwgNxYPdiO2WGUj8+HDjFi8R3k5RVKPeSCzLjCcshCAtVO2QBbVuAV4kTnw==}
     dev: true
 
   /@types/concat-stream/1.6.1:
@@ -1693,11 +1693,11 @@ packages:
       vue: 3.2.45
     dev: true
 
-  /@vitest/coverage-c8/0.24.5_happy-dom@6.0.4:
-    resolution: {integrity: sha512-955yK/SdSBZPYrSXgXB0F+0JnOX5EY9kSL7ywJ4rNajmkFUhwLjuKm13Xb6YKSyIY/g5WvbBnyowqfNRxBJ3ww==}
+  /@vitest/coverage-c8/0.25.2_happy-dom@6.0.4:
+    resolution: {integrity: sha512-qKsiUJh3bjbB5Q229CbxEWCqiDBwvIrcZ9OOuQdMEC0pce3/LlTUK3+K3hd7WqAYEbbiqXfC5MVMKHZkV82PgA==}
     dependencies:
       c8: 7.12.0
-      vitest: 0.24.5_happy-dom@6.0.4
+      vitest: 0.25.2_happy-dom@6.0.4
     transitivePeerDependencies:
       - '@edge-runtime/vm'
       - '@vitest/browser'
@@ -1849,18 +1849,18 @@ packages:
   /@vue/shared/3.2.45:
     resolution: {integrity: sha512-Ewzq5Yhimg7pSztDV+RH1UDKBzmtqieXQlpTVm2AwraoRL/Rks96mvd8Vgi7Lj+h+TH8dv7mXD3FRZR3TUvbSg==}
 
-  /@vue/test-utils/2.2.3:
-    resolution: {integrity: sha512-MbqIS11cPEuZmqvyKNCnTdGxfNS4FhvQx7HO1JFQHlZRIM3ql2iwjPv9L1AFiLl4taW/5RTQz0r54d47xJuurA==}
+  /@vue/test-utils/2.2.4:
+    resolution: {integrity: sha512-1JjLduJ84bFcuCt/1YLTNyktYeUHS/zA0u8iTmF6w6ul1K/nSvyKu/MC47YjdpZ4lI/hn7FH31B22kfz62e9wA==}
     peerDependencies:
       vue: ^3.0.1
     dev: true
 
-  /@vueuse/core/9.4.0:
-    resolution: {integrity: sha512-JzgenGj1ZF2BHOen5rsFiAyyI9sXAv7aKhNLlm9b7SwYQeKTcxTWdhudonURCSP3Egl9NQaRBzes2lv/1JUt/Q==}
+  /@vueuse/core/9.5.0:
+    resolution: {integrity: sha512-6GsWBsJHEb3sYw15mbLrcbslAVY45pkzjJYTKYKCXv88z7srAF0VEW0q+oXKsl58tCbqooplInahXFg8Yo1m4w==}
     dependencies:
       '@types/web-bluetooth': 0.0.16
-      '@vueuse/metadata': 9.4.0
-      '@vueuse/shared': 9.4.0
+      '@vueuse/metadata': 9.5.0
+      '@vueuse/shared': 9.5.0
       vue-demi: 0.13.11
     transitivePeerDependencies:
       - '@vue/composition-api'
@@ -1879,12 +1879,12 @@ packages:
       vue: 3.2.45
     dev: true
 
-  /@vueuse/metadata/9.4.0:
-    resolution: {integrity: sha512-7GKMdGAsJyQJl35MYOz/RDpP0FxuiZBRDSN79QIPbdqYx4Sd0sVTnIC68KJ6Oln0t0SouvSUMvRHuno216Ud2Q==}
+  /@vueuse/metadata/9.5.0:
+    resolution: {integrity: sha512-4M1AyPZmIv41pym+K5+4wup3bKuYebbH8w8BROY1hmT7rIwcyS4tEL+UsGz0Hiu1FCOxcoBrwtAizc0YmBJjyQ==}
     dev: false
 
-  /@vueuse/shared/9.4.0:
-    resolution: {integrity: sha512-fTuem51KwMCnqUKkI8B57qAIMcFovtGgsCtAeqxIzH3i6nE9VYge+gVfneNHAAy7lj8twbkNfqQSygOPJTm4tQ==}
+  /@vueuse/shared/9.5.0:
+    resolution: {integrity: sha512-HnnCWU1Vg9CVWRCcI8ohDKDRB2Sc4bTgT1XAIaoLSfVHHn+TKbrox6pd3klCSw4UDxkhDfOk8cAdcK+Z5KleCA==}
     dependencies:
       vue-demi: 0.13.11
     transitivePeerDependencies:
@@ -1908,6 +1908,11 @@ packages:
     resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==}
     dev: true
 
+  /acorn-walk/8.2.0:
+    resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==}
+    engines: {node: '>=0.4.0'}
+    dev: true
+
   /acorn/8.8.0:
     resolution: {integrity: sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==}
     engines: {node: '>=0.4.0'}
@@ -2321,15 +2326,15 @@ packages:
     resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==}
     dev: true
 
-  /chai/4.3.6:
-    resolution: {integrity: sha512-bbcp3YfHCUzMOvKqsztczerVgBKSsEijCySNlHHbX3VG1nskvqjz5Rfso1gGwD6w6oOV3eI60pKuMOV5MV7p3Q==}
+  /chai/4.3.7:
+    resolution: {integrity: sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A==}
     engines: {node: '>=4'}
     dependencies:
       assertion-error: 1.1.0
       check-error: 1.0.2
-      deep-eql: 3.0.1
+      deep-eql: 4.1.2
       get-func-name: 2.0.0
-      loupe: 2.3.4
+      loupe: 2.3.6
       pathval: 1.1.1
       type-detect: 4.0.8
     dev: true
@@ -2960,9 +2965,9 @@ packages:
     engines: {node: '>=0.10.0'}
     dev: true
 
-  /deep-eql/3.0.1:
-    resolution: {integrity: sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==}
-    engines: {node: '>=0.12'}
+  /deep-eql/4.1.2:
+    resolution: {integrity: sha512-gT18+YW4CcW/DBNTwAmqTtkJh7f9qqScu2qFVlx7kCoeY9tlBu9cUcr7+I+Z/noG8INehS3xQgLpTtd/QUTn4w==}
+    engines: {node: '>=6'}
     dependencies:
       type-detect: 4.0.8
     dev: true
@@ -5082,8 +5087,8 @@ packages:
       wrap-ansi: 6.2.0
     dev: true
 
-  /loupe/2.3.4:
-    resolution: {integrity: sha512-OvKfgCC2Ndby6aSTREl5aCCPTNIzlDfQZvZxNUrBrihDhL3xcrYegTblhmEiCrg2kKQz4XsFIaemE5BF4ybSaQ==}
+  /loupe/2.3.6:
+    resolution: {integrity: sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==}
     dependencies:
       get-func-name: 2.0.0
     dev: true
@@ -5137,8 +5142,8 @@ packages:
     engines: {node: '>=8'}
     dev: true
 
-  /marked/4.1.1:
-    resolution: {integrity: sha512-0cNMnTcUJPxbA6uWmCmjWz4NJRe/0Xfk2NhXCUHjew9qJzFN20krFnsUe7QynwqOwa5m1fZ4UDg0ycKFVC0ccw==}
+  /marked/4.2.3:
+    resolution: {integrity: sha512-slWRdJkbTZ+PjkyJnE30Uid64eHwbwa1Q25INCAYfZlK4o6ylagBy/Le9eWntqJFoFT93ikUKMv47GZ4gTwHkw==}
     engines: {node: '>= 12'}
     hasBin: true
     dev: true
@@ -7141,7 +7146,7 @@ packages:
   /strip-literal/0.4.2:
     resolution: {integrity: sha512-pv48ybn4iE1O9RLgCAN0iU4Xv7RlBTiit6DKmMiErbs9x1wH6vXBs45tWc0H5wUIF6TLTrKweqkmYF/iraQKNw==}
     dependencies:
-      acorn: 8.8.0
+      acorn: 8.8.1
     dev: true
 
   /strip-literal/1.0.0:
@@ -7195,10 +7200,10 @@ packages:
       stable: 0.1.8
     dev: true
 
-  /swrv/1.0.0-beta.8:
-    resolution: {integrity: sha512-MsjaMOvZODfM0cess/HhbSrNbAotYinv4vzipLckKYBo/QmrvjNUPGZSRSqByXy/9AjrMRFWo0YanaVPbqADPQ==}
+  /swrv/1.0.1:
+    resolution: {integrity: sha512-FZMXK/mOp7LYBHrQ/zWnZXfoZ8ONrVV9eOJ4+p0OdEcsafLLrODPaeJFGDcI6CV/3o3J/t5GY9ozVGg10NC8ng==}
     peerDependencies:
-      vue: ^3.0.0
+      vue: '>=3.2.26 < 4'
     dev: false
 
   /sync-request/6.1.0:
@@ -7424,24 +7429,24 @@ packages:
     resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==}
     dev: true
 
-  /typedoc-plugin-markdown/3.13.6_typedoc@0.23.20:
+  /typedoc-plugin-markdown/3.13.6_typedoc@0.23.21:
     resolution: {integrity: sha512-ISSc9v3BK7HkokxSBuJPttXox4tJ6hP0N9wfSIk0fmLN67+eqtAxbk97gs2nDiuha+RTO5eW9gdeAb+RPP0mgg==}
     peerDependencies:
       typedoc: '>=0.23.0'
     dependencies:
       handlebars: 4.7.7
-      typedoc: 0.23.20_typescript@4.8.4
+      typedoc: 0.23.21_typescript@4.8.4
     dev: true
 
-  /typedoc/0.23.20_typescript@4.8.4:
-    resolution: {integrity: sha512-nfb4Mx05ZZZXux3zPcLuc7+3TVePDW3jTdEBqXdQzJUyEILxoprgPIiTChbvci9crkqNJG9YESmfCptuh9Gn3g==}
+  /typedoc/0.23.21_typescript@4.8.4:
+    resolution: {integrity: sha512-VNE9Jv7BgclvyH9moi2mluneSviD43dCE9pY8RWkO88/DrEgJZk9KpUk7WO468c9WWs/+aG6dOnoH7ccjnErhg==}
     engines: {node: '>= 14.14'}
     hasBin: true
     peerDependencies:
-      typescript: 4.6.x || 4.7.x || 4.8.x
+      typescript: 4.6.x || 4.7.x || 4.8.x || 4.9.x
     dependencies:
       lunr: 2.3.9
-      marked: 4.1.1
+      marked: 4.2.3
       minimatch: 5.1.0
       shiki: 0.11.1
       typescript: 4.8.4
@@ -7855,8 +7860,8 @@ packages:
       - stylus
     dev: false
 
-  /vitest/0.24.5_happy-dom@6.0.4:
-    resolution: {integrity: sha512-zw6JhPUHtLILQDe5Q39b/SzoITkG+R7hcFjuthp4xsi6zpmfQPOZcHodZ+3bqoWl4EdGK/p1fuMiEwdxgbGLOA==}
+  /vitest/0.25.2_happy-dom@6.0.4:
+    resolution: {integrity: sha512-qqkzfzglEFbQY7IGkgSJkdOhoqHjwAao/OrphnHboeYHC5JzsVFoLCaB2lnAy8krhj7sbrFTVRApzpkTOeuDWQ==}
     engines: {node: '>=v14.16.0'}
     hasBin: true
     peerDependencies:
@@ -7877,13 +7882,16 @@ packages:
       jsdom:
         optional: true
     dependencies:
-      '@types/chai': 4.3.3
+      '@types/chai': 4.3.4
       '@types/chai-subset': 1.3.3
       '@types/node': 16.18.3
-      chai: 4.3.6
+      acorn: 8.8.1
+      acorn-walk: 8.2.0
+      chai: 4.3.7
       debug: 4.3.4
       happy-dom: 6.0.4
       local-pkg: 0.4.2
+      source-map: 0.6.1
       strip-literal: 0.4.2
       tinybench: 2.3.1
       tinypool: 0.3.0