From: Eduardo San Martin Morote Date: Mon, 25 Jul 2022 09:58:07 +0000 (+0200) Subject: docs: fix links X-Git-Tag: @pinia/nuxt@0.3.1~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6c39e694c5e7522d330f4c0f94e0dd6429636779;p=thirdparty%2Fvuejs%2Fpinia.git docs: fix links --- diff --git a/netlify.toml b/netlify.toml index 9e85f652..241d6a7b 100644 --- a/netlify.toml +++ b/netlify.toml @@ -2,6 +2,6 @@ NPM_FLAGS="--version" [build] -command = "npx pnpm@6 i --store=node_modules/.pnpm-store && npx pnpm@6 run docs:build" +command = "npx pnpm@7 i --store=node_modules/.pnpm-store && npx pnpm@6 run docs:build" ignore = "./scripts/docs-check.sh" publish = "packages/docs/.vitepress/dist" diff --git a/package.json b/package.json index 1052b472..a5ab20e1 100644 --- a/package.json +++ b/package.json @@ -39,7 +39,7 @@ "jest": "^28.1.3", "jest-environment-jsdom": "^28.1.3", "jest-mock-warn": "^1.1.0", - "lint-staged": "^12.5.0", + "lint-staged": "^13.0.3", "lodash.kebabcase": "^4.1.1", "minimist": "^1.2.6", "p-series": "^3.0.0", @@ -52,7 +52,7 @@ "semver": "^7.3.7", "typedoc": "^0.23.9", "typedoc-plugin-markdown": "^3.13.4", - "typescript": "^4.6.3", + "typescript": "^4.7.4", "vue": "^3.2.37", "yorkie": "^2.0.0" }, diff --git a/packages/docs/api/enums/pinia.MutationType.md b/packages/docs/api/enums/pinia.MutationType.md index 86dd80d6..1654ed4d 100644 --- a/packages/docs/api/enums/pinia.MutationType.md +++ b/packages/docs/api/enums/pinia.MutationType.md @@ -24,10 +24,6 @@ Direct mutation of the state: - `store.$state.name = 'new name'` - `store.list.push('new item')` -#### Defined in - -[packages/pinia/src/types.ts:50](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L50) - ___ ### patchFunction @@ -38,10 +34,6 @@ Mutated the state with `$patch` and a function - `store.$patch(state => state.name = 'newName')` -#### Defined in - -[packages/pinia/src/types.ts:64](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L64) - ___ ### patchObject @@ -51,7 +43,3 @@ ___ Mutated the state with `$patch` and an object - `store.$patch({ name: 'newName' })` - -#### Defined in - -[packages/pinia/src/types.ts:57](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L57) diff --git a/packages/docs/api/interfaces/pinia.DefineSetupStoreOptions.md b/packages/docs/api/interfaces/pinia.DefineSetupStoreOptions.md index 3c93b4e3..7b5cbf10 100644 --- a/packages/docs/api/interfaces/pinia.DefineSetupStoreOptions.md +++ b/packages/docs/api/interfaces/pinia.DefineSetupStoreOptions.md @@ -41,7 +41,3 @@ augment stores with the plugin API. Extracted actions. Added by useStore(). SHOULD NOT be added by the user when creating the store. Can be used in plugins to get the list of actions in a store defined with a setup function. Note this is always defined - -#### Defined in - -[packages/pinia/src/types.ts:697](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L697) diff --git a/packages/docs/api/interfaces/pinia.DefineStoreOptions.md b/packages/docs/api/interfaces/pinia.DefineStoreOptions.md index 64117274..5cc1fa41 100644 --- a/packages/docs/api/interfaces/pinia.DefineStoreOptions.md +++ b/packages/docs/api/interfaces/pinia.DefineStoreOptions.md @@ -40,10 +40,6 @@ augment stores with the plugin API. Optional object of actions. -#### Defined in - -[packages/pinia/src/types.ts:645](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L645) - ___ ### getters @@ -52,10 +48,6 @@ ___ Optional object of getters. -#### Defined in - -[packages/pinia/src/types.ts:638](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L638) - ___ ### id @@ -64,10 +56,6 @@ ___ Unique string key to identify the store across the application. -#### Defined in - -[packages/pinia/src/types.ts:627](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L627) - ___ ### state @@ -85,10 +73,6 @@ correct typings! `S` -#### Defined in - -[packages/pinia/src/types.ts:633](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L633) - ## Methods ### hydrate @@ -126,7 +110,3 @@ const useStore = defineStore('main', { #### Returns `void` - -#### Defined in - -[packages/pinia/src/types.ts:678](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L678) diff --git a/packages/docs/api/interfaces/pinia.DefineStoreOptionsInPlugin.md b/packages/docs/api/interfaces/pinia.DefineStoreOptionsInPlugin.md index c0ac78e8..15777ac9 100644 --- a/packages/docs/api/interfaces/pinia.DefineStoreOptionsInPlugin.md +++ b/packages/docs/api/interfaces/pinia.DefineStoreOptionsInPlugin.md @@ -37,10 +37,6 @@ Extracted object of actions. Added by useStore() when the store is built using the setup API, otherwise uses the one passed to `defineStore()`. Defaults to an empty object if no actions are defined. -#### Defined in - -[packages/pinia/src/types.ts:714](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L714) - ___ ### getters @@ -53,10 +49,6 @@ Optional object of getters. Omit.getters -#### Defined in - -[packages/pinia/src/types.ts:638](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L638) - ___ ### state @@ -78,10 +70,6 @@ correct typings! Omit.state -#### Defined in - -[packages/pinia/src/types.ts:633](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L633) - ## Methods ### hydrate @@ -123,7 +111,3 @@ const useStore = defineStore('main', { #### Inherited from Omit.hydrate - -#### Defined in - -[packages/pinia/src/types.ts:678](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L678) diff --git a/packages/docs/api/interfaces/pinia.Pinia.md b/packages/docs/api/interfaces/pinia.Pinia.md index 0119cd5f..9c88b0ca 100644 --- a/packages/docs/api/interfaces/pinia.Pinia.md +++ b/packages/docs/api/interfaces/pinia.Pinia.md @@ -38,10 +38,6 @@ Every application must own its own pinia to be able to create stores `void` -#### Defined in - -[packages/pinia/src/rootStore.ts:46](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/rootStore.ts#L46) - ___ ### state @@ -50,10 +46,6 @@ ___ root state -#### Defined in - -[packages/pinia/src/rootStore.ts:51](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/rootStore.ts#L51) - ## Methods ### use @@ -71,7 +63,3 @@ Adds a store plugin to extend every store #### Returns [`Pinia`](pinia.Pinia.md) - -#### Defined in - -[packages/pinia/src/rootStore.ts:58](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/rootStore.ts#L58) diff --git a/packages/docs/api/interfaces/pinia.PiniaCustomProperties.md b/packages/docs/api/interfaces/pinia.PiniaCustomProperties.md index 5cc98377..46c96d5e 100644 --- a/packages/docs/api/interfaces/pinia.PiniaCustomProperties.md +++ b/packages/docs/api/interfaces/pinia.PiniaCustomProperties.md @@ -31,10 +31,6 @@ Interface to be extended by the user when they add properties through plugins. `RouteLocationNormalized` -#### Defined in - -[packages/playground/src/main.ts:17](https://github.com/vuejs/pinia/blob/aa0192a/packages/playground/src/main.ts#L17) - • `set` **route**(`value`): `void` #### Parameters @@ -46,7 +42,3 @@ Interface to be extended by the user when they add properties through plugins. #### Returns `void` - -#### Defined in - -[packages/playground/src/main.ts:14](https://github.com/vuejs/pinia/blob/aa0192a/packages/playground/src/main.ts#L14) diff --git a/packages/docs/api/interfaces/pinia.PiniaPlugin.md b/packages/docs/api/interfaces/pinia.PiniaPlugin.md index 136546b5..a7454493 100644 --- a/packages/docs/api/interfaces/pinia.PiniaPlugin.md +++ b/packages/docs/api/interfaces/pinia.PiniaPlugin.md @@ -28,7 +28,3 @@ nothing. #### Returns `void` \| `Partial`<[`PiniaCustomProperties`](pinia.PiniaCustomProperties.md)<`string`, [`StateTree`](../modules/pinia.md#statetree), [`_GettersTree`](../modules/pinia.md#_getterstree)<[`StateTree`](../modules/pinia.md#statetree)\>, [`_ActionsTree`](../modules/pinia.md#_actionstree)\> & [`PiniaCustomStateProperties`](pinia.PiniaCustomStateProperties.md)<[`StateTree`](../modules/pinia.md#statetree)\>\> - -#### Defined in - -[packages/pinia/src/rootStore.ts:140](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/rootStore.ts#L140) diff --git a/packages/docs/api/interfaces/pinia.PiniaPluginContext.md b/packages/docs/api/interfaces/pinia.PiniaPluginContext.md index de736ab8..84c07ed3 100644 --- a/packages/docs/api/interfaces/pinia.PiniaPluginContext.md +++ b/packages/docs/api/interfaces/pinia.PiniaPluginContext.md @@ -29,10 +29,6 @@ Context argument passed to Pinia plugins. Current app created with `Vue.createApp()`. -#### Defined in - -[packages/pinia/src/rootStore.ts:117](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/rootStore.ts#L117) - ___ ### options @@ -41,10 +37,6 @@ ___ Initial options defining the store when calling `defineStore()`. -#### Defined in - -[packages/pinia/src/rootStore.ts:127](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/rootStore.ts#L127) - ___ ### pinia @@ -53,10 +45,6 @@ ___ pinia instance. -#### Defined in - -[packages/pinia/src/rootStore.ts:112](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/rootStore.ts#L112) - ___ ### store @@ -64,7 +52,3 @@ ___ • **store**: [`Store`](../modules/pinia.md#store)<`Id`, `S`, `G`, `A`\> Current store being extended. - -#### Defined in - -[packages/pinia/src/rootStore.ts:122](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/rootStore.ts#L122) diff --git a/packages/docs/api/interfaces/pinia.StoreDefinition.md b/packages/docs/api/interfaces/pinia.StoreDefinition.md index a8f865d2..9288199f 100644 --- a/packages/docs/api/interfaces/pinia.StoreDefinition.md +++ b/packages/docs/api/interfaces/pinia.StoreDefinition.md @@ -38,10 +38,6 @@ Returns a store, creates it if necessary. [`Store`](../modules/pinia.md#store)<`Id`, `S`, `G`, `A`\> -#### Defined in - -[packages/pinia/src/types.ts:504](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L504) - ## Properties ### $id @@ -49,7 +45,3 @@ Returns a store, creates it if necessary. • **$id**: `Id` Id of the store. Used by map helpers. - -#### Defined in - -[packages/pinia/src/types.ts:509](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L509) diff --git a/packages/docs/api/interfaces/pinia.StoreProperties.md b/packages/docs/api/interfaces/pinia.StoreProperties.md index 73bd1dbe..416136de 100644 --- a/packages/docs/api/interfaces/pinia.StoreProperties.md +++ b/packages/docs/api/interfaces/pinia.StoreProperties.md @@ -32,10 +32,6 @@ Properties of a store. Unique identifier of the store -#### Defined in - -[packages/pinia/src/types.ts:258](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L258) - ___ ### \_customProperties @@ -45,7 +41,3 @@ ___ Used by devtools plugin to retrieve properties added with plugins. Removed in production. Can be used by the user to add property keys of the store that should be displayed in devtools. - -#### Defined in - -[packages/pinia/src/types.ts:286](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L286) diff --git a/packages/docs/api/interfaces/pinia.SubscriptionCallbackMutationDirect.md b/packages/docs/api/interfaces/pinia.SubscriptionCallbackMutationDirect.md index a1c3fdbc..21af5bd8 100644 --- a/packages/docs/api/interfaces/pinia.SubscriptionCallbackMutationDirect.md +++ b/packages/docs/api/interfaces/pinia.SubscriptionCallbackMutationDirect.md @@ -28,10 +28,6 @@ newValue`. DEV ONLY. Different mutation calls. -#### Defined in - -[packages/pinia/src/types.ts:96](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L96) - ___ ### storeId @@ -44,10 +40,6 @@ ___ [_SubscriptionCallbackMutationBase](pinia._SubscriptionCallbackMutationBase.md).[storeId](pinia._SubscriptionCallbackMutationBase.md#storeid) -#### Defined in - -[packages/pinia/src/types.ts:81](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L81) - ___ ### type @@ -59,7 +51,3 @@ Type of the mutation. #### Overrides [_SubscriptionCallbackMutationBase](pinia._SubscriptionCallbackMutationBase.md).[type](pinia._SubscriptionCallbackMutationBase.md#type) - -#### Defined in - -[packages/pinia/src/types.ts:91](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L91) diff --git a/packages/docs/api/interfaces/pinia.SubscriptionCallbackMutationPatchFunction.md b/packages/docs/api/interfaces/pinia.SubscriptionCallbackMutationPatchFunction.md index a75be62a..1fc1835a 100644 --- a/packages/docs/api/interfaces/pinia.SubscriptionCallbackMutationPatchFunction.md +++ b/packages/docs/api/interfaces/pinia.SubscriptionCallbackMutationPatchFunction.md @@ -27,10 +27,6 @@ with a function. DEV ONLY. Array of all the mutations done inside of the callback. -#### Defined in - -[packages/pinia/src/types.ts:129](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L129) - ___ ### storeId @@ -43,10 +39,6 @@ ___ [_SubscriptionCallbackMutationBase](pinia._SubscriptionCallbackMutationBase.md).[storeId](pinia._SubscriptionCallbackMutationBase.md#storeid) -#### Defined in - -[packages/pinia/src/types.ts:81](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L81) - ___ ### type @@ -58,7 +50,3 @@ Type of the mutation. #### Overrides [_SubscriptionCallbackMutationBase](pinia._SubscriptionCallbackMutationBase.md).[type](pinia._SubscriptionCallbackMutationBase.md#type) - -#### Defined in - -[packages/pinia/src/types.ts:124](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L124) diff --git a/packages/docs/api/interfaces/pinia.SubscriptionCallbackMutationPatchObject.md b/packages/docs/api/interfaces/pinia.SubscriptionCallbackMutationPatchObject.md index 5e894d1e..5c4bc784 100644 --- a/packages/docs/api/interfaces/pinia.SubscriptionCallbackMutationPatchObject.md +++ b/packages/docs/api/interfaces/pinia.SubscriptionCallbackMutationPatchObject.md @@ -33,10 +33,6 @@ with an object. DEV ONLY. Array for patch calls. -#### Defined in - -[packages/pinia/src/types.ts:110](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L110) - ___ ### payload @@ -45,10 +41,6 @@ ___ Object passed to `store.$patch()`. -#### Defined in - -[packages/pinia/src/types.ts:115](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L115) - ___ ### storeId @@ -61,10 +53,6 @@ ___ [_SubscriptionCallbackMutationBase](pinia._SubscriptionCallbackMutationBase.md).[storeId](pinia._SubscriptionCallbackMutationBase.md#storeid) -#### Defined in - -[packages/pinia/src/types.ts:81](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L81) - ___ ### type @@ -76,7 +64,3 @@ Type of the mutation. #### Overrides [_SubscriptionCallbackMutationBase](pinia._SubscriptionCallbackMutationBase.md).[type](pinia._SubscriptionCallbackMutationBase.md#type) - -#### Defined in - -[packages/pinia/src/types.ts:105](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L105) diff --git a/packages/docs/api/interfaces/pinia._StoreOnActionListenerContext.md b/packages/docs/api/interfaces/pinia._StoreOnActionListenerContext.md index 582e76e2..8f9a1bc7 100644 --- a/packages/docs/api/interfaces/pinia._StoreOnActionListenerContext.md +++ b/packages/docs/api/interfaces/pinia._StoreOnActionListenerContext.md @@ -45,10 +45,6 @@ of the action, if it's a Promise, it will be unwrapped. `void` -#### Defined in - -[packages/pinia/src/types.ts:203](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L203) - ___ ### args @@ -57,10 +53,6 @@ ___ Parameters passed to the action -#### Defined in - -[packages/pinia/src/types.ts:195](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L195) - ___ ### name @@ -69,10 +61,6 @@ ___ Name of the action -#### Defined in - -[packages/pinia/src/types.ts:185](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L185) - ___ ### onError @@ -96,10 +84,6 @@ stop it fro propagating. `void` -#### Defined in - -[packages/pinia/src/types.ts:213](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L213) - ___ ### store @@ -107,7 +91,3 @@ ___ • **store**: `Store` Store that is invoking the action - -#### Defined in - -[packages/pinia/src/types.ts:190](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L190) diff --git a/packages/docs/api/interfaces/pinia._StoreWithState.md b/packages/docs/api/interfaces/pinia._StoreWithState.md index 6218335c..3cd030b4 100644 --- a/packages/docs/api/interfaces/pinia._StoreWithState.md +++ b/packages/docs/api/interfaces/pinia._StoreWithState.md @@ -39,10 +39,6 @@ Unique identifier of the store [StoreProperties](pinia.StoreProperties.md).[$id](pinia.StoreProperties.md#$id) -#### Defined in - -[packages/pinia/src/types.ts:258](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L258) - ___ ### $state @@ -51,10 +47,6 @@ ___ State of the Store. Setting it will replace the whole state. -#### Defined in - -[packages/pinia/src/types.ts:328](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L328) - ___ ### \_customProperties @@ -69,10 +61,6 @@ that should be displayed in devtools. [StoreProperties](pinia.StoreProperties.md).[_customProperties](pinia.StoreProperties.md#_customproperties) -#### Defined in - -[packages/pinia/src/types.ts:286](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L286) - ## Methods ### $dispose @@ -87,10 +75,6 @@ e.g. devtools plugin stops displaying disposed stores from devtools. `void` -#### Defined in - -[packages/pinia/src/types.ts:416](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L416) - ___ ### $onAction @@ -180,10 +164,6 @@ store.$onAction(({ after, onError }) => { function that removes the watcher -#### Defined in - -[packages/pinia/src/types.ts:406](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L406) - ___ ### $patch @@ -202,10 +182,6 @@ Applies a state patch to current state. Allows passing nested values `void` -#### Defined in - -[packages/pinia/src/types.ts:335](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L335) - ▸ **$patch**<`F`\>(`stateMutator`): `void` Group multiple changes into one function. Useful when mutating objects like @@ -228,10 +204,6 @@ to an array. The function passed to `$patch()` **must be synchronous**. `void` -#### Defined in - -[packages/pinia/src/types.ts:344](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L344) - ___ ### $reset @@ -245,10 +217,6 @@ TODO: make this options only `void` -#### Defined in - -[packages/pinia/src/types.ts:353](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L353) - ___ ### $subscribe @@ -283,7 +251,3 @@ component gets unmounted unless `detached` is set to true. `void` function that removes the watcher - -#### Defined in - -[packages/pinia/src/types.ts:365](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L365) diff --git a/packages/docs/api/interfaces/pinia._SubscriptionCallbackMutationBase.md b/packages/docs/api/interfaces/pinia._SubscriptionCallbackMutationBase.md index f76c5325..22c4615a 100644 --- a/packages/docs/api/interfaces/pinia._SubscriptionCallbackMutationBase.md +++ b/packages/docs/api/interfaces/pinia._SubscriptionCallbackMutationBase.md @@ -30,10 +30,6 @@ Base type for the context passed to a subscription callback. Internal type. `id` of the store doing the mutation. -#### Defined in - -[packages/pinia/src/types.ts:81](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L81) - ___ ### type @@ -41,7 +37,3 @@ ___ • **type**: [`MutationType`](../enums/pinia.MutationType.md) Type of the mutation. - -#### Defined in - -[packages/pinia/src/types.ts:76](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L76) diff --git a/packages/docs/api/interfaces/pinia_testing.TestingOptions.md b/packages/docs/api/interfaces/pinia_testing.TestingOptions.md index eeb49b0e..8c77dcba 100644 --- a/packages/docs/api/interfaces/pinia_testing.TestingOptions.md +++ b/packages/docs/api/interfaces/pinia_testing.TestingOptions.md @@ -45,10 +45,6 @@ with `jest.fn()` in jest projects or `vi.fn()` in vitest projects. `any` -#### Defined in - -[packages/testing/src/testing.ts:63](https://github.com/vuejs/pinia/blob/aa0192a/packages/testing/src/testing.ts#L63) - ___ ### fakeApp @@ -60,10 +56,6 @@ pinia. This is allows you to use plugins while unit testing stores as plugins **will wait for pinia to be installed in order to be executed**. Defaults to false. -#### Defined in - -[packages/testing/src/testing.ts:57](https://github.com/vuejs/pinia/blob/aa0192a/packages/testing/src/testing.ts#L57) - ___ ### initialState @@ -73,10 +65,6 @@ ___ Allows defining a partial initial state of all your stores. This state gets applied after a store is created, allowing you to only set a few properties that are required in your test. -#### Defined in - -[packages/testing/src/testing.ts:27](https://github.com/vuejs/pinia/blob/aa0192a/packages/testing/src/testing.ts#L27) - ___ ### plugins @@ -86,10 +74,6 @@ ___ Plugins to be installed before the testing plugin. Add any plugins used in your application that will be used while testing. -#### Defined in - -[packages/testing/src/testing.ts:33](https://github.com/vuejs/pinia/blob/aa0192a/packages/testing/src/testing.ts#L33) - ___ ### stubActions @@ -102,10 +86,6 @@ not being executed. Defaults to true. NOTE: when providing `createSpy()`, it will **only** make the `fn` argument `undefined`. You still have to handle this in `createSpy()`. -#### Defined in - -[packages/testing/src/testing.ts:42](https://github.com/vuejs/pinia/blob/aa0192a/packages/testing/src/testing.ts#L42) - ___ ### stubPatch @@ -115,7 +95,3 @@ ___ When set to true, calls to `$patch()` won't change the state. Defaults to false. NOTE: when providing `createSpy()`, it will **only** make the `fn` argument `undefined`. You still have to handle this in `createSpy()`. - -#### Defined in - -[packages/testing/src/testing.ts:49](https://github.com/vuejs/pinia/blob/aa0192a/packages/testing/src/testing.ts#L49) diff --git a/packages/docs/api/interfaces/pinia_testing.TestingPinia.md b/packages/docs/api/interfaces/pinia_testing.TestingPinia.md index d4bed52f..670c97d1 100644 --- a/packages/docs/api/interfaces/pinia_testing.TestingPinia.md +++ b/packages/docs/api/interfaces/pinia_testing.TestingPinia.md @@ -11,7 +11,7 @@ sidebarDepth: 3 [@pinia/testing](../modules/pinia_testing.md).TestingPinia Pinia instance specifically designed for testing. Extends a regular -Pinia instance with test specific properties. +`Pinia` instance with test specific properties. ## Hierarchy @@ -27,10 +27,6 @@ Pinia instance with test specific properties. App used by Pinia -#### Defined in - -[packages/testing/src/testing.ts:72](https://github.com/vuejs/pinia/blob/aa0192a/packages/testing/src/testing.ts#L72) - ___ ### install @@ -55,10 +51,6 @@ ___ [Pinia](pinia.Pinia.md).[install](pinia.Pinia.md#install) -#### Defined in - -[packages/pinia/src/rootStore.ts:46](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/rootStore.ts#L46) - ___ ### state @@ -71,10 +63,6 @@ root state [Pinia](pinia.Pinia.md).[state](pinia.Pinia.md#state) -#### Defined in - -[packages/pinia/src/rootStore.ts:51](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/rootStore.ts#L51) - ## Methods ### use @@ -96,7 +84,3 @@ Adds a store plugin to extend every store #### Inherited from [Pinia](pinia.Pinia.md).[use](pinia.Pinia.md#use) - -#### Defined in - -[packages/pinia/src/rootStore.ts:58](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/rootStore.ts#L58) diff --git a/packages/docs/api/modules/pinia.md b/packages/docs/api/modules/pinia.md index 225f0cf2..080d10c4 100644 --- a/packages/docs/api/modules/pinia.md +++ b/packages/docs/api/modules/pinia.md @@ -45,10 +45,6 @@ Plugin to extend every store. use PiniaPlugin instead -#### Defined in - -[packages/pinia/src/rootStore.ts:149](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/rootStore.ts#L149) - ___ ### StateTree @@ -57,10 +53,6 @@ ___ Generic state of a Store -#### Defined in - -[packages/pinia/src/types.ts:13](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L13) - ___ ### Store @@ -78,10 +70,6 @@ Store type to build a store. | `G` | {} | | `A` | {} | -#### Defined in - -[packages/pinia/src/types.ts:463](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L463) - ___ ### StoreActions @@ -97,10 +85,6 @@ Options Store. | :------ | | `SS` | -#### Defined in - -[packages/pinia/src/store.ts:744](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/store.ts#L744) - ___ ### StoreGeneric @@ -111,10 +95,6 @@ Generic and type-unsafe version of Store. Doesn't fail on access with strings, making it much easier to write generic functions that do not care about the kind of store that is passed. -#### Defined in - -[packages/pinia/src/types.ts:482](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L482) - ___ ### StoreGetters @@ -130,10 +110,6 @@ Options Store. | :------ | | `SS` | -#### Defined in - -[packages/pinia/src/store.ts:757](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/store.ts#L757) - ___ ### StoreOnActionListener @@ -165,10 +141,6 @@ Argument of `store.$onAction()` `void` -#### Defined in - -[packages/pinia/src/types.ts:236](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L236) - ___ ### StoreOnActionListenerContext @@ -187,10 +159,6 @@ TODO: should have only the Id, the Store and Actions to generate the proper obje | `G` | `G` | | `A` | `A` | -#### Defined in - -[packages/pinia/src/types.ts:220](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L220) - ___ ### StoreState @@ -206,10 +174,6 @@ Options Store. Note this unwraps refs. | :------ | | `SS` | -#### Defined in - -[packages/pinia/src/store.ts:770](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/store.ts#L770) - ___ ### SubscriptionCallback @@ -239,10 +203,6 @@ Callback of a subscription `void` -#### Defined in - -[packages/pinia/src/types.ts:148](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L148) - ___ ### SubscriptionCallbackMutation @@ -257,10 +217,6 @@ Context object passed to a subscription callback. | :------ | | `S` | -#### Defined in - -[packages/pinia/src/types.ts:140](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L140) - ___ ### \_ActionsTree @@ -270,10 +226,6 @@ ___ Type of an object of Actions. For internal usage only. For internal use **only** -#### Defined in - -[packages/pinia/src/types.ts:548](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L548) - ___ ### \_Awaited @@ -286,10 +238,6 @@ ___ | :------ | | `T` | -#### Defined in - -[packages/pinia/src/types.ts:164](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L164) - ___ ### \_DeepPartial @@ -306,10 +254,6 @@ For internal use **only** | :------ | | `T` | -#### Defined in - -[packages/pinia/src/types.ts:35](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L35) - ___ ### \_ExtractActionsFromSetupStore @@ -324,10 +268,6 @@ For internal use **only** | :------ | | `SS` | -#### Defined in - -[packages/pinia/src/types.ts:592](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L592) - ___ ### \_ExtractActionsFromSetupStore\_Keys @@ -343,10 +283,6 @@ For internal use **only** | :------ | | `SS` | -#### Defined in - -[packages/pinia/src/types.ts:562](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L562) - ___ ### \_ExtractGettersFromSetupStore @@ -361,10 +297,6 @@ For internal use **only** | :------ | | `SS` | -#### Defined in - -[packages/pinia/src/types.ts:601](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L601) - ___ ### \_ExtractGettersFromSetupStore\_Keys @@ -380,10 +312,6 @@ For internal use **only** | :------ | | `SS` | -#### Defined in - -[packages/pinia/src/types.ts:570](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L570) - ___ ### \_ExtractStateFromSetupStore @@ -398,10 +326,6 @@ For internal use **only** | :------ | | `SS` | -#### Defined in - -[packages/pinia/src/types.ts:583](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L583) - ___ ### \_ExtractStateFromSetupStore\_Keys @@ -417,10 +341,6 @@ For internal use **only** | :------ | | `SS` | -#### Defined in - -[packages/pinia/src/types.ts:554](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L554) - ___ ### \_GettersTree @@ -436,10 +356,6 @@ For internal use **only** | :------ | :------ | | `S` | extends [`StateTree`](pinia.md#statetree) | -#### Defined in - -[packages/pinia/src/types.ts:538](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L538) - ___ ### \_MapActionsObjectReturn @@ -455,10 +371,6 @@ For internal use **only** | `A` | `A` | | `T` | extends `Record`<`string`, keyof `A`\> | -#### Defined in - -[packages/pinia/src/mapHelpers.ts:297](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/mapHelpers.ts#L297) - ___ ### \_MapActionsReturn @@ -473,10 +385,6 @@ For internal use **only** | :------ | | `A` | -#### Defined in - -[packages/pinia/src/mapHelpers.ts:290](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/mapHelpers.ts#L290) - ___ ### \_MapStateObjectReturn @@ -495,10 +403,6 @@ For internal use **only** | `A` | `A` | | `T` | extends `Record`<`string`, keyof `S` \| keyof `G` \| (`store`: [`Store`](pinia.md#store)<`Id`, `S`, `G`, `A`\>) => `any`\> = {} | -#### Defined in - -[packages/pinia/src/mapHelpers.ts:141](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/mapHelpers.ts#L141) - ___ ### \_MapStateReturn @@ -515,10 +419,6 @@ For internal use **only** | `G` | extends [`_GettersTree`](pinia.md#_getterstree)<`S`\> | | `Keys` | extends keyof `S` \| keyof `G` = keyof `S` \| keyof `G` | -#### Defined in - -[packages/pinia/src/mapHelpers.ts:125](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/mapHelpers.ts#L125) - ___ ### \_MapWritableStateObjectReturn @@ -534,10 +434,6 @@ For internal use **only** | `S` | extends [`StateTree`](pinia.md#statetree) | | `T` | extends `Record`<`string`, keyof `S`\> | -#### Defined in - -[packages/pinia/src/mapHelpers.ts:422](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/mapHelpers.ts#L422) - ___ ### \_MapWritableStateReturn @@ -552,10 +448,6 @@ For internal use **only** | :------ | :------ | | `S` | extends [`StateTree`](pinia.md#statetree) | -#### Defined in - -[packages/pinia/src/mapHelpers.ts:412](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/mapHelpers.ts#L412) - ___ ### \_Method @@ -580,10 +472,6 @@ For internal use **only** `any` -#### Defined in - -[packages/pinia/src/types.ts:432](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L432) - ___ ### \_Spread @@ -598,10 +486,6 @@ For internal use **only**. | :------ | :------ | | `A` | extends readonly `any`[] | -#### Defined in - -[packages/pinia/src/mapHelpers.ts:53](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/mapHelpers.ts#L53) - ___ ### \_StoreObject @@ -616,10 +500,6 @@ For internal use **only**. | :------ | | `S` | -#### Defined in - -[packages/pinia/src/mapHelpers.ts:25](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/mapHelpers.ts#L25) - ___ ### \_StoreWithActions @@ -635,10 +515,6 @@ For internal use **only** | :------ | | `A` | -#### Defined in - -[packages/pinia/src/types.ts:444](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L444) - ___ ### \_StoreWithGetters @@ -654,10 +530,6 @@ For internal use **only** | :------ | | `G` | -#### Defined in - -[packages/pinia/src/types.ts:454](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L454) - ___ ### \_UnwrapAll @@ -673,10 +545,6 @@ For internal use **only** | :------ | | `SS` | -#### Defined in - -[packages/pinia/src/types.ts:578](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/types.ts#L578) - ## Variables ### PiniaVuePlugin @@ -707,10 +575,6 @@ new Vue({ `Vue` imported from 'vue'. -#### Defined in - -[packages/pinia/src/vue2-plugin.ts:28](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/vue2-plugin.ts#L28) - ## Functions ### acceptHMRUpdate @@ -751,10 +615,6 @@ if (import.meta.hot) { `any` -#### Defined in - -[packages/pinia/src/hmr.ts:73](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/hmr.ts#L73) - ___ ### createPinia @@ -767,10 +627,6 @@ Creates a Pinia instance to be used by the application [`Pinia`](../interfaces/pinia.Pinia.md) -#### Defined in - -[packages/pinia/src/createPinia.ts:10](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/createPinia.ts#L10) - ___ ### defineStore @@ -799,10 +655,6 @@ Creates a `useStore` function that retrieves the store instance [`StoreDefinition`](../interfaces/pinia.StoreDefinition.md)<`Id`, `S`, `G`, `A`\> -#### Defined in - -[packages/pinia/src/store.ts:793](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/store.ts#L793) - ▸ **defineStore**<`Id`, `S`, `G`, `A`\>(`options`): [`StoreDefinition`](../interfaces/pinia.StoreDefinition.md)<`Id`, `S`, `G`, `A`\> Creates a `useStore` function that retrieves the store instance @@ -826,10 +678,6 @@ Creates a `useStore` function that retrieves the store instance [`StoreDefinition`](../interfaces/pinia.StoreDefinition.md)<`Id`, `S`, `G`, `A`\> -#### Defined in - -[packages/pinia/src/store.ts:809](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/store.ts#L809) - ▸ **defineStore**<`Id`, `SS`\>(`id`, `storeSetup`, `options?`): [`StoreDefinition`](../interfaces/pinia.StoreDefinition.md)<`Id`, [`_ExtractStateFromSetupStore`](pinia.md#_extractstatefromsetupstore)<`SS`\>, [`_ExtractGettersFromSetupStore`](pinia.md#_extractgettersfromsetupstore)<`SS`\>, [`_ExtractActionsFromSetupStore`](pinia.md#_extractactionsfromsetupstore)<`SS`\>\> Creates a `useStore` function that retrieves the store instance @@ -853,10 +701,6 @@ Creates a `useStore` function that retrieves the store instance [`StoreDefinition`](../interfaces/pinia.StoreDefinition.md)<`Id`, [`_ExtractStateFromSetupStore`](pinia.md#_extractstatefromsetupstore)<`SS`\>, [`_ExtractGettersFromSetupStore`](pinia.md#_extractgettersfromsetupstore)<`SS`\>, [`_ExtractActionsFromSetupStore`](pinia.md#_extractactionsfromsetupstore)<`SS`\>\> -#### Defined in - -[packages/pinia/src/store.ts:824](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/store.ts#L824) - ___ ### getActivePinia @@ -869,10 +713,6 @@ Get the currently active pinia if there is any. `undefined` \| [`Pinia`](../interfaces/pinia.Pinia.md) -#### Defined in - -[packages/pinia/src/rootStore.ts:39](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/rootStore.ts#L39) - ___ ### mapActions @@ -922,10 +762,6 @@ export default { [`_MapActionsObjectReturn`](pinia.md#_mapactionsobjectreturn)<`A`, `KeyMapper`\> -#### Defined in - -[packages/pinia/src/mapHelpers.ts:326](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/mapHelpers.ts#L326) - ▸ **mapActions**<`Id`, `S`, `G`, `A`\>(`useStore`, `keys`): [`_MapActionsReturn`](pinia.md#_mapactionsreturn)<`A`\> Allows directly using actions from your store without using the composition @@ -968,10 +804,6 @@ export default { [`_MapActionsReturn`](pinia.md#_mapactionsreturn)<`A`\> -#### Defined in - -[packages/pinia/src/mapHelpers.ts:359](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/mapHelpers.ts#L359) - ___ ### mapGetters @@ -1032,10 +864,6 @@ export default { [`_MapStateObjectReturn`](pinia.md#_mapstateobjectreturn)<`Id`, `S`, `G`, `A`, `KeyMapper`\> -#### Defined in - -[packages/pinia/src/mapHelpers.ts:194](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/mapHelpers.ts#L194) - ▸ **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 @@ -1079,10 +907,6 @@ export default { [`_MapStateReturn`](pinia.md#_mapstatereturn)<`S`, `G`, `Keys`\> -#### Defined in - -[packages/pinia/src/mapHelpers.ts:231](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/mapHelpers.ts#L231) - ___ ### mapState @@ -1143,10 +967,6 @@ export default { [`_MapStateObjectReturn`](pinia.md#_mapstateobjectreturn)<`Id`, `S`, `G`, `A`, `KeyMapper`\> -#### Defined in - -[packages/pinia/src/mapHelpers.ts:194](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/mapHelpers.ts#L194) - ▸ **mapState**<`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 @@ -1190,10 +1010,6 @@ export default { [`_MapStateReturn`](pinia.md#_mapstatereturn)<`S`, `G`, `Keys`\> -#### Defined in - -[packages/pinia/src/mapHelpers.ts:231](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/mapHelpers.ts#L231) - ___ ### mapStores @@ -1236,10 +1052,6 @@ export default { [`_Spread`](pinia.md#_spread)<`Stores`\> -#### Defined in - -[packages/pinia/src/mapHelpers.ts:96](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/mapHelpers.ts#L96) - ___ ### mapWritableState @@ -1271,10 +1083,6 @@ added. [`_MapWritableStateObjectReturn`](pinia.md#_mapwritablestateobjectreturn)<`S`, `KeyMapper`\> -#### Defined in - -[packages/pinia/src/mapHelpers.ts:440](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/mapHelpers.ts#L440) - ▸ **mapWritableState**<`Id`, `S`, `G`, `A`\>(`useStore`, `keys`): [`_MapWritableStateReturn`](pinia.md#_mapwritablestatereturn)<`S`\> Allows using state and getters from one store without using the composition @@ -1301,10 +1109,6 @@ of a component. [`_MapWritableStateReturn`](pinia.md#_mapwritablestatereturn)<`S`\> -#### Defined in - -[packages/pinia/src/mapHelpers.ts:458](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/mapHelpers.ts#L458) - ___ ### setActivePinia @@ -1324,10 +1128,6 @@ actions and getters `undefined` \| [`Pinia`](../interfaces/pinia.Pinia.md) -#### Defined in - -[packages/pinia/src/rootStore.ts:33](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/rootStore.ts#L33) - ___ ### setMapStoreSuffix @@ -1348,10 +1148,6 @@ interface if you are using TypeScript. `void` -#### Defined in - -[packages/pinia/src/mapHelpers.ts:66](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/mapHelpers.ts#L66) - ___ ### skipHydrate @@ -1379,10 +1175,6 @@ stateful object in the store but it isn't really state. e.g. returning a router obj -#### Defined in - -[packages/pinia/src/store.ts:94](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/store.ts#L94) - ___ ### storeToRefs @@ -1409,7 +1201,3 @@ completely ignored. #### Returns `ToRefs`<[`StoreState`](pinia.md#storestate)<`SS`\> & [`StoreGetters`](pinia.md#storegetters)<`SS`\> & [`PiniaCustomStateProperties`](../interfaces/pinia.PiniaCustomStateProperties.md)<[`StoreState`](pinia.md#storestate)<`SS`\>\>\> - -#### Defined in - -[packages/pinia/src/storeToRefs.ts:21](https://github.com/vuejs/pinia/blob/aa0192a/packages/pinia/src/storeToRefs.ts#L21) diff --git a/packages/docs/api/modules/pinia_nuxt.md b/packages/docs/api/modules/pinia_nuxt.md index 74efd7ff..63178af0 100644 --- a/packages/docs/api/modules/pinia_nuxt.md +++ b/packages/docs/api/modules/pinia_nuxt.md @@ -29,7 +29,3 @@ sidebarDepth: 3 #### Returns `void` \| `Promise`<`void`\> - -#### Defined in - -node_modules/.pnpm/@nuxt+schema@3.0.0-rc.4/node_modules/@nuxt/schema/dist/index.d.ts:470 diff --git a/packages/docs/api/modules/pinia_testing.md b/packages/docs/api/modules/pinia_testing.md index 56d3cc7b..d15b7146 100644 --- a/packages/docs/api/modules/pinia_testing.md +++ b/packages/docs/api/modules/pinia_testing.md @@ -37,7 +37,3 @@ they are replaced with `jest.fn()`, otherwise, you must provide your own [`TestingPinia`](../interfaces/pinia_testing.TestingPinia.md) a augmented pinia instance - -#### Defined in - -[packages/testing/src/testing.ts:92](https://github.com/vuejs/pinia/blob/aa0192a/packages/testing/src/testing.ts#L92) diff --git a/packages/docs/core-concepts/index.md b/packages/docs/core-concepts/index.md index 4750268a..e18ab5a6 100644 --- a/packages/docs/core-concepts/index.md +++ b/packages/docs/core-concepts/index.md @@ -64,7 +64,7 @@ In _Setup Stores_: - `computed()`s become `getters` - `function()`s become `actions` -Setup stores bring a lot more flexibility than [Options Stores](#option-stores) as you can create watchers within a store and freely use any [composable](https://vuejs.org/guide/reusability/composables.html#composables). However, keep in mind that using composables will get more complex [SSR](../ssr/composables.md). +Setup stores bring a lot more flexibility than [Options Stores](#option-stores) as you can create watchers within a store and freely use any [composable](https://vuejs.org/guide/reusability/composables.html#composables). However, keep in mind that using composables will get more complex [SSR](../cookbook//composables.md). ## What syntax should I pick? diff --git a/packages/docs/package.json b/packages/docs/package.json index eb3f1b57..1ed4d93e 100644 --- a/packages/docs/package.json +++ b/packages/docs/package.json @@ -8,7 +8,7 @@ "docs:build": "vitepress build ." }, "dependencies": { - "@vueuse/core": "^7.6.1", + "@vueuse/core": "^8.9.4", "pinia": "^2.0.0", "vitepress": "^0.22.2" } diff --git a/packages/docs/run-typedoc.js b/packages/docs/run-typedoc.js index 48e03695..841fbe0f 100644 --- a/packages/docs/run-typedoc.js +++ b/packages/docs/run-typedoc.js @@ -6,6 +6,7 @@ createTypeDocApp({ tsconfig: path.resolve(__dirname, './typedoc.tsconfig.json'), // entryPointStrategy: 'packages', githubPages: false, + disableSources: true, entryPoints: [ path.resolve(__dirname, '../pinia/src/index.ts'), path.resolve(__dirname, '../testing/src/index.ts'), diff --git a/packages/nuxt/package.json b/packages/nuxt/package.json index 8644265a..35a4954b 100644 --- a/packages/nuxt/package.json +++ b/packages/nuxt/package.json @@ -45,13 +45,13 @@ "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s --commit-path . -l @pinia/nuxt -r 1" }, "dependencies": { - "@nuxt/kit": "^3.0.0-rc.4", + "@nuxt/kit": "3.0.0-rc.6", "pinia": ">=2.0.14" }, "devDependencies": { "@nuxt/module-builder": "latest", "nuxt": "^3.0.0-rc.4", - "typescript": "^4.6.3", + "typescript": "^4.7.4", "vue-tsc": "^0.39.0" }, "publishConfig": { diff --git a/packages/pinia/package.json b/packages/pinia/package.json index 8b71455a..12241969 100644 --- a/packages/pinia/package.json +++ b/packages/pinia/package.json @@ -70,7 +70,7 @@ ], "license": "MIT", "devDependencies": { - "@microsoft/api-extractor": "7.19.2", + "@microsoft/api-extractor": "7.28.6", "@vue/test-utils": "^2.0.2" }, "dependencies": { diff --git a/packages/playground/package.json b/packages/playground/package.json index 10cb2950..56b0a9ce 100644 --- a/packages/playground/package.json +++ b/packages/playground/package.json @@ -8,11 +8,11 @@ "serve": "vite preview" }, "devDependencies": { - "@vitejs/plugin-vue": "^2.2.0", - "vite": "^2.8.1" + "@vitejs/plugin-vue": "^3.0.1", + "vite": "^3.0.3" }, "dependencies": { - "@vueuse/core": "^7.6.1", + "@vueuse/core": "^8.9.4", "mande": "^1.0.0", "pinia": "^2.0.0-rc.4", "swrv": "^1.0.0-beta.8", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 5d60e39e..6028b872 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -23,7 +23,7 @@ importers: jest: ^28.1.3 jest-environment-jsdom: ^28.1.3 jest-mock-warn: ^1.1.0 - lint-staged: ^12.5.0 + lint-staged: ^13.0.3 lodash.kebabcase: ^4.1.1 minimist: ^1.2.6 p-series: ^3.0.0 @@ -36,7 +36,7 @@ importers: semver: ^7.3.7 typedoc: ^0.23.9 typedoc-plugin-markdown: ^3.13.4 - typescript: ^4.6.3 + typescript: ^4.7.4 vue: ^3.2.37 yorkie: ^2.0.0 devDependencies: @@ -59,7 +59,7 @@ importers: jest: 28.1.3_@types+node@16.11.41 jest-environment-jsdom: 28.1.3 jest-mock-warn: 1.1.0 - lint-staged: 12.5.0_enquirer@2.3.6 + lint-staged: 13.0.3_enquirer@2.3.6 lodash.kebabcase: 4.1.1 minimist: 1.2.6 p-series: 3.0.0 @@ -68,44 +68,44 @@ importers: rimraf: 3.0.2 rollup: 2.77.0 rollup-plugin-terser: 7.0.2_rollup@2.77.0 - rollup-plugin-typescript2: 0.32.1_czofgt6r7tjeneyyjielmh4yka + rollup-plugin-typescript2: 0.32.1_55kiftncucr43pz4hskma6yi2q semver: 7.3.7 - typedoc: 0.23.9_typescript@4.6.3 + typedoc: 0.23.9_typescript@4.7.4 typedoc-plugin-markdown: 3.13.4_typedoc@0.23.9 - typescript: 4.6.3 + typescript: 4.7.4 vue: 3.2.37 yorkie: 2.0.0 packages/docs: specifiers: - '@vueuse/core': ^7.6.1 + '@vueuse/core': ^8.9.4 pinia: ^2.0.0 vitepress: ^0.22.2 dependencies: - '@vueuse/core': 7.7.1 + '@vueuse/core': 8.9.4 pinia: link:../pinia vitepress: 0.22.3 packages/nuxt: specifiers: - '@nuxt/kit': ^3.0.0-rc.4 + '@nuxt/kit': 3.0.0-rc.6 '@nuxt/module-builder': latest nuxt: ^3.0.0-rc.4 pinia: '>=2.0.14' - typescript: ^4.6.3 + typescript: ^4.7.4 vue-tsc: ^0.39.0 dependencies: - '@nuxt/kit': 3.0.0-rc.4 + '@nuxt/kit': 3.0.0-rc.6 pinia: link:../pinia devDependencies: '@nuxt/module-builder': 0.1.7 nuxt: 3.0.0-rc.4 - typescript: 4.6.3 - vue-tsc: 0.39.0_typescript@4.6.3 + typescript: 4.7.4 + vue-tsc: 0.39.0_typescript@4.7.4 packages/pinia: specifiers: - '@microsoft/api-extractor': 7.19.2 + '@microsoft/api-extractor': 7.28.6 '@vue/devtools-api': ^6.2.1 '@vue/test-utils': ^2.0.2 vue-demi: '*' @@ -113,29 +113,29 @@ importers: '@vue/devtools-api': 6.2.1 vue-demi: 0.13.5 devDependencies: - '@microsoft/api-extractor': 7.19.2 + '@microsoft/api-extractor': 7.28.6 '@vue/test-utils': 2.0.2 packages/playground: specifiers: - '@vitejs/plugin-vue': ^2.2.0 - '@vueuse/core': ^7.6.1 + '@vitejs/plugin-vue': ^3.0.1 + '@vueuse/core': ^8.9.4 mande: ^1.0.0 pinia: ^2.0.0-rc.4 swrv: ^1.0.0-beta.8 - vite: ^2.8.1 + vite: ^3.0.3 vue-promised: ^2.2.0 vue-router: ^4.1.2 dependencies: - '@vueuse/core': 7.7.1 + '@vueuse/core': 8.9.4 mande: 1.0.1 pinia: link:../pinia swrv: 1.0.0-beta.8 vue-promised: 2.2.0 vue-router: 4.1.2 devDependencies: - '@vitejs/plugin-vue': 2.3.1_vite@2.9.0 - vite: 2.9.0 + '@vitejs/plugin-vue': 3.0.1_vite@3.0.3 + vite: 3.0.3 packages/size-check: specifiers: @@ -276,7 +276,7 @@ packages: engines: {node: '>=6.0.0'} dependencies: '@jridgewell/gen-mapping': 0.1.1 - '@jridgewell/trace-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.14 /@babel/code-frame/7.16.7: resolution: {integrity: sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==} @@ -291,36 +291,9 @@ packages: dependencies: '@babel/highlight': 7.18.6 - /@babel/compat-data/7.18.5: - resolution: {integrity: sha512-BxhE40PVCBxVEJsSBhB6UWyAuqJRxGsAw8BdHMJ3AKGydcwuWW4kOO3HmqBQAdcq/OP+/DlTVxLvsCzRTnZuGg==} - engines: {node: '>=6.9.0'} - /@babel/compat-data/7.18.8: resolution: {integrity: sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==} engines: {node: '>=6.9.0'} - dev: true - - /@babel/core/7.18.5: - resolution: {integrity: sha512-MGY8vg3DxMnctw0LdvSEojOsumc70g0t18gNyUdAZqB1Rpd1Bqo/svHGvt+UJ6JcGX+DIekGFDxxIWofBxLCnQ==} - engines: {node: '>=6.9.0'} - dependencies: - '@ampproject/remapping': 2.2.0 - '@babel/code-frame': 7.18.6 - '@babel/generator': 7.18.7 - '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.5 - '@babel/helper-module-transforms': 7.18.0 - '@babel/helpers': 7.18.2 - '@babel/parser': 7.18.8 - '@babel/template': 7.18.6 - '@babel/traverse': 7.18.8 - '@babel/types': 7.18.8 - convert-source-map: 1.8.0 - debug: 4.3.4 - gensync: 1.0.0-beta.2 - json5: 2.2.1 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color /@babel/core/7.18.9: resolution: {integrity: sha512-1LIb1eL8APMy91/IMW+31ckrfBM4yCoLaVzoDhZUKSM4cu1L1nIidyxkCgzPAgrC5WEz36IPEr/eSeSF9pIn+g==} @@ -343,24 +316,6 @@ packages: semver: 6.3.0 transitivePeerDependencies: - supports-color - dev: true - - /@babel/generator/7.18.2: - resolution: {integrity: sha512-W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.18.4 - '@jridgewell/gen-mapping': 0.3.1 - jsesc: 2.5.2 - dev: true - - /@babel/generator/7.18.7: - resolution: {integrity: sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.18.8 - '@jridgewell/gen-mapping': 0.3.2 - jsesc: 2.5.2 /@babel/generator/7.18.9: resolution: {integrity: sha512-wt5Naw6lJrL1/SGkipMiFxJjtyczUWTP38deiP1PO60HsBjDeKk08CGC3S8iVuvf0FmTdgKwU1KIXzSKL1G0Ug==} @@ -369,27 +324,14 @@ packages: '@babel/types': 7.18.9 '@jridgewell/gen-mapping': 0.3.2 jsesc: 2.5.2 - dev: true /@babel/helper-annotate-as-pure/7.18.6: resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.8 + '@babel/types': 7.18.9 dev: true - /@babel/helper-compilation-targets/7.18.2_@babel+core@7.18.5: - resolution: {integrity: sha512-s1jnPotJS9uQnzFtiZVBUxe67CuBa679oWFHpxYYnTpRL/1ffhyX44R9uYiXoa/pLXcY9H2moJta0iaanlk/rQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/compat-data': 7.18.5 - '@babel/core': 7.18.5 - '@babel/helper-validator-option': 7.16.7 - browserslist: 4.20.4 - semver: 6.3.0 - /@babel/helper-compilation-targets/7.18.9_@babel+core@7.18.9: resolution: {integrity: sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==} engines: {node: '>=6.9.0'} @@ -401,18 +343,17 @@ packages: '@babel/helper-validator-option': 7.18.6 browserslist: 4.21.2 semver: 6.3.0 - dev: true - /@babel/helper-create-class-features-plugin/7.18.6_@babel+core@7.18.5: + /@babel/helper-create-class-features-plugin/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-YfDzdnoxHGV8CzqHGyCbFvXg5QESPFkXlHtvdCkesLjjVMT2Adxe4FGUR5ChIb3DxSaXO12iIOCWoXdsUVwnqw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.5 + '@babel/core': 7.18.9 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-environment-visitor': 7.18.6 - '@babel/helper-function-name': 7.18.6 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.18.9 '@babel/helper-member-expression-to-functions': 7.18.6 '@babel/helper-optimise-call-expression': 7.18.6 '@babel/helper-replace-supers': 7.18.6 @@ -421,34 +362,9 @@ packages: - supports-color dev: true - /@babel/helper-environment-visitor/7.18.2: - resolution: {integrity: sha512-14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ==} - engines: {node: '>=6.9.0'} - dev: true - - /@babel/helper-environment-visitor/7.18.6: - resolution: {integrity: sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==} - engines: {node: '>=6.9.0'} - /@babel/helper-environment-visitor/7.18.9: resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==} engines: {node: '>=6.9.0'} - dev: true - - /@babel/helper-function-name/7.17.9: - resolution: {integrity: sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/template': 7.16.7 - '@babel/types': 7.18.4 - dev: true - - /@babel/helper-function-name/7.18.6: - resolution: {integrity: sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/template': 7.18.6 - '@babel/types': 7.18.8 /@babel/helper-function-name/7.18.9: resolution: {integrity: sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==} @@ -456,55 +372,32 @@ packages: dependencies: '@babel/template': 7.18.6 '@babel/types': 7.18.9 - dev: true - - /@babel/helper-hoist-variables/7.16.7: - resolution: {integrity: sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.18.4 - dev: true /@babel/helper-hoist-variables/7.18.6: resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.8 + '@babel/types': 7.18.9 /@babel/helper-member-expression-to-functions/7.18.6: resolution: {integrity: sha512-CeHxqwwipekotzPDUuJOfIMtcIHBuc7WAzLmTYWctVigqS5RktNMQ5bEwQSuGewzYnCtTWa3BARXeiLxDTv+Ng==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.8 + '@babel/types': 7.18.9 dev: true /@babel/helper-module-imports/7.16.7: resolution: {integrity: sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.8 + '@babel/types': 7.18.9 + dev: true /@babel/helper-module-imports/7.18.6: resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.18.9 - dev: true - - /@babel/helper-module-transforms/7.18.0: - resolution: {integrity: sha512-kclUYSUBIjlvnzN2++K9f2qzYKFgjmnmjwL4zlmU5f8ZtzgWe8s0rUPSTGy2HmK4P8T52MQsS+HTQAgZd3dMEA==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-environment-visitor': 7.18.6 - '@babel/helper-module-imports': 7.16.7 - '@babel/helper-simple-access': 7.18.2 - '@babel/helper-split-export-declaration': 7.18.6 - '@babel/helper-validator-identifier': 7.18.6 - '@babel/template': 7.18.6 - '@babel/traverse': 7.18.8 - '@babel/types': 7.18.8 - transitivePeerDependencies: - - supports-color /@babel/helper-module-transforms/7.18.9: resolution: {integrity: sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==} @@ -520,13 +413,12 @@ packages: '@babel/types': 7.18.9 transitivePeerDependencies: - supports-color - dev: true /@babel/helper-optimise-call-expression/7.18.6: resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.8 + '@babel/types': 7.18.9 dev: true /@babel/helper-plugin-utils/7.18.6: @@ -543,40 +435,26 @@ packages: resolution: {integrity: sha512-fTf7zoXnUGl9gF25fXCWE26t7Tvtyn6H4hkLSYhATwJvw2uYxd3aoXplMSe0g9XbwK7bmxNes7+FGO0rB/xC0g==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-environment-visitor': 7.18.6 + '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-member-expression-to-functions': 7.18.6 '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/traverse': 7.18.8 - '@babel/types': 7.18.8 + '@babel/traverse': 7.18.9 + '@babel/types': 7.18.9 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-simple-access/7.18.2: - resolution: {integrity: sha512-7LIrjYzndorDY88MycupkpQLKS1AFfsVRm2k/9PtKScSy5tZq0McZTj+DiMRynboZfIqOKvo03pmhTaUgiD6fQ==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.18.8 - /@babel/helper-simple-access/7.18.6: resolution: {integrity: sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.18.9 - dev: true - - /@babel/helper-split-export-declaration/7.16.7: - resolution: {integrity: sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.18.4 - dev: true /@babel/helper-split-export-declaration/7.18.6: resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.8 + '@babel/types': 7.18.9 /@babel/helper-validator-identifier/7.16.7: resolution: {integrity: sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==} @@ -586,24 +464,9 @@ packages: resolution: {integrity: sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==} engines: {node: '>=6.9.0'} - /@babel/helper-validator-option/7.16.7: - resolution: {integrity: sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==} - engines: {node: '>=6.9.0'} - /@babel/helper-validator-option/7.18.6: resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==} engines: {node: '>=6.9.0'} - dev: true - - /@babel/helpers/7.18.2: - resolution: {integrity: sha512-j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/template': 7.18.6 - '@babel/traverse': 7.18.8 - '@babel/types': 7.18.8 - transitivePeerDependencies: - - supports-color /@babel/helpers/7.18.9: resolution: {integrity: sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==} @@ -614,7 +477,6 @@ packages: '@babel/types': 7.18.9 transitivePeerDependencies: - supports-color - dev: true /@babel/highlight/7.17.9: resolution: {integrity: sha512-J9PfEKCbFIv2X5bjTMiZu6Vf341N05QIY+d6FvVKynkG1S7G0j3I0QoRtWIrXhZ+/Nlb5Q0MzqL7TokEJ5BNHg==} @@ -649,28 +511,12 @@ packages: '@babel/types': 7.17.0 dev: true - /@babel/parser/7.18.5: - resolution: {integrity: sha512-YZWVaglMiplo7v8f1oMQ5ZPQr0vn7HPeZXxXWsxXJRjGVrzUFn9OxFQl1sb5wzfootjA/yChhW84BV+383FSOw==} - engines: {node: '>=6.0.0'} - hasBin: true - dependencies: - '@babel/types': 7.18.4 - dev: true - - /@babel/parser/7.18.8: - resolution: {integrity: sha512-RSKRfYX20dyH+elbJK2uqAkVyucL+xXzhqlMD5/ZXx+dAAwpyB7HsvnHe/ZUGOF+xLr5Wx9/JoXVTj6BQE2/oA==} - engines: {node: '>=6.0.0'} - hasBin: true - dependencies: - '@babel/types': 7.18.8 - /@babel/parser/7.18.9: resolution: {integrity: sha512-9uJveS9eY9DJ0t64YbIBZICtJy8a5QrDEVdiLCG97fVLpDTpGX7t8mMSb6OWw6Lrnjqj4O8zwjELX3dhoMgiBg==} engines: {node: '>=6.0.0'} hasBin: true dependencies: '@babel/types': 7.18.9 - dev: true /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.18.9: resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} @@ -699,15 +545,6 @@ packages: '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.18.5: - resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.5 - '@babel/helper-plugin-utils': 7.18.6 - dev: true - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.18.9: resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: @@ -726,13 +563,13 @@ packages: '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.18.5: + /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.5 + '@babel/core': 7.18.9 '@babel/helper-plugin-utils': 7.18.6 dev: true @@ -800,16 +637,6 @@ packages: '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.18.5: - resolution: {integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.5 - '@babel/helper-plugin-utils': 7.18.9 - dev: true - /@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==} engines: {node: '>=6.9.0'} @@ -820,75 +647,31 @@ packages: '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-transform-typescript/7.18.8_@babel+core@7.18.5: + /@babel/plugin-transform-typescript/7.18.8_@babel+core@7.18.9: resolution: {integrity: sha512-p2xM8HI83UObjsZGofMV/EdYjamsDm6MoN3hXPYIT0+gxIoopE+B7rPYKAxfrz9K9PK7JafTTjqYC6qipLExYA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.5 - '@babel/helper-create-class-features-plugin': 7.18.6_@babel+core@7.18.5 + '@babel/core': 7.18.9 + '@babel/helper-create-class-features-plugin': 7.18.6_@babel+core@7.18.9 '@babel/helper-plugin-utils': 7.18.6 - '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.18.5 + '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.18.9 transitivePeerDependencies: - supports-color dev: true - /@babel/standalone/7.18.8: - resolution: {integrity: sha512-cDayR7x6IAp7k1947fYeo7OxD7QwT9/UZ+BT05Zq2pfsOzkhOJZdY19X0NvL6fYaszwnzO0zVHgp04OspPh3SA==} + /@babel/standalone/7.18.9: + resolution: {integrity: sha512-6E+p5azHMHcMkHzGFnA7Pqhtgfwx1cClwjMqomMHhdFupCLZDDpVQUctRGYE7p7nn7cXJZSI/L9en+tt30AP3w==} engines: {node: '>=6.9.0'} - /@babel/template/7.16.7: - resolution: {integrity: sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.18.6 - '@babel/parser': 7.18.5 - '@babel/types': 7.18.4 - dev: true - /@babel/template/7.18.6: resolution: {integrity: sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/parser': 7.18.8 - '@babel/types': 7.18.8 - - /@babel/traverse/7.18.5: - resolution: {integrity: sha512-aKXj1KT66sBj0vVzk6rEeAO6Z9aiiQ68wfDgge3nHhA/my6xMM/7HGQUNumKZaoa2qUPQ5whJG9aAifsxUKfLA==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.18.6 - '@babel/generator': 7.18.2 - '@babel/helper-environment-visitor': 7.18.2 - '@babel/helper-function-name': 7.17.9 - '@babel/helper-hoist-variables': 7.16.7 - '@babel/helper-split-export-declaration': 7.16.7 - '@babel/parser': 7.18.5 - '@babel/types': 7.18.4 - debug: 4.3.4 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/traverse/7.18.8: - resolution: {integrity: sha512-UNg/AcSySJYR/+mIcJQDCv00T+AqRO7j/ZEJLzpaYtgM48rMg5MnkJgyNqkzo88+p4tfRvZJCEiwwfG6h4jkRg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.18.6 - '@babel/generator': 7.18.7 - '@babel/helper-environment-visitor': 7.18.6 - '@babel/helper-function-name': 7.18.6 - '@babel/helper-hoist-variables': 7.18.6 - '@babel/helper-split-export-declaration': 7.18.6 - '@babel/parser': 7.18.8 - '@babel/types': 7.18.8 - debug: 4.3.4 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color + '@babel/parser': 7.18.9 + '@babel/types': 7.18.9 /@babel/traverse/7.18.9: resolution: {integrity: sha512-LcPAnujXGwBgv3/WHv01pHtb2tihcyW1XuL9wd7jqh1Z8AQkTd+QVjMrMijrln0T7ED3UXLIy36P9Ao7W75rYg==} @@ -906,7 +689,6 @@ packages: globals: 11.12.0 transitivePeerDependencies: - supports-color - dev: true /@babel/types/7.17.0: resolution: {integrity: sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==} @@ -915,27 +697,12 @@ packages: '@babel/helper-validator-identifier': 7.16.7 to-fast-properties: 2.0.0 - /@babel/types/7.18.4: - resolution: {integrity: sha512-ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-validator-identifier': 7.16.7 - to-fast-properties: 2.0.0 - - /@babel/types/7.18.8: - resolution: {integrity: sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-validator-identifier': 7.18.6 - to-fast-properties: 2.0.0 - /@babel/types/7.18.9: resolution: {integrity: sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-validator-identifier': 7.18.6 to-fast-properties: 2.0.0 - dev: true /@bcoe/v8-coverage/0.2.3: resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} @@ -1221,58 +988,33 @@ packages: resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==} engines: {node: '>=6.0.0'} dependencies: - '@jridgewell/set-array': 1.1.1 - '@jridgewell/sourcemap-codec': 1.4.13 - - /@jridgewell/gen-mapping/0.3.1: - resolution: {integrity: sha512-GcHwniMlA2z+WFPWuY8lp3fsza0I8xPFMWL5+n8LYyP6PSvPrXf4+n8stDHZY2DM0zy9sVkRDy1jDI4XGzYVqg==} - engines: {node: '>=6.0.0'} - dependencies: - '@jridgewell/set-array': 1.1.1 - '@jridgewell/sourcemap-codec': 1.4.13 - '@jridgewell/trace-mapping': 0.3.13 - dev: true + '@jridgewell/set-array': 1.1.2 + '@jridgewell/sourcemap-codec': 1.4.14 /@jridgewell/gen-mapping/0.3.2: resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==} engines: {node: '>=6.0.0'} dependencies: - '@jridgewell/set-array': 1.1.1 - '@jridgewell/sourcemap-codec': 1.4.13 - '@jridgewell/trace-mapping': 0.3.13 - - /@jridgewell/resolve-uri/3.0.7: - resolution: {integrity: sha512-8cXDaBBHOr2pQ7j77Y6Vp5VDT2sIqWyWQ56TjEq4ih/a4iST3dItRe8Q9fp0rrIl9DoKhWQtUQz/YpOxLkXbNA==} - engines: {node: '>=6.0.0'} + '@jridgewell/set-array': 1.1.2 + '@jridgewell/sourcemap-codec': 1.4.14 + '@jridgewell/trace-mapping': 0.3.14 /@jridgewell/resolve-uri/3.1.0: resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} engines: {node: '>=6.0.0'} - dev: true - /@jridgewell/set-array/1.1.1: - resolution: {integrity: sha512-Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ==} + /@jridgewell/set-array/1.1.2: + resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} engines: {node: '>=6.0.0'} - /@jridgewell/sourcemap-codec/1.4.13: - resolution: {integrity: sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w==} - /@jridgewell/sourcemap-codec/1.4.14: resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} - dev: true - - /@jridgewell/trace-mapping/0.3.13: - resolution: {integrity: sha512-o1xbKhp9qnIAoHJSWd6KlCZfqslL4valSF81H8ImioOAxluWYWOpWkpyktY2vnt4tbrX9XYaxovq6cgowaJp2w==} - dependencies: - '@jridgewell/resolve-uri': 3.0.7 - '@jridgewell/sourcemap-codec': 1.4.13 /@jridgewell/trace-mapping/0.3.14: resolution: {integrity: sha512-bJWEfQ9lPTvm3SneWwRFVLzrh6nhjwqw7TUFFBEMzwvg7t7PCDenf2lDwqo4NQXzdpgBXyFgDWnQA+2vkruksQ==} dependencies: '@jridgewell/resolve-uri': 3.1.0 '@jridgewell/sourcemap-codec': 1.4.14 - dev: true /@mapbox/node-pre-gyp/1.0.9: resolution: {integrity: sha512-aDF3S3rK9Q2gey/WAttUlISduDItz5BU3306M9Eyv6/oS40aMprnopshtlKTykxRNIBEZuRMaZAnbrQ4QtKGyw==} @@ -1292,43 +1034,43 @@ packages: - supports-color dev: true - /@microsoft/api-extractor-model/7.15.1: - resolution: {integrity: sha512-DWfS1o3oMY0mzdO3OuQbD/9vzn80jwM6tFd7XbiYnkpxwhD83LMGXz7NZWwSh+IaA+9w3LF4w62fT31Qq+dAMw==} + /@microsoft/api-extractor-model/7.22.1: + resolution: {integrity: sha512-3Bx6VC8F4ti8XlhaOCynCpwGvdXGwHD2dGBpo2xpJT9gEmPQvpAL3Ni+5gaEX0eQ27zGILVTUZDqZSRYskk/Rw==} dependencies: - '@microsoft/tsdoc': 0.13.2 - '@microsoft/tsdoc-config': 0.15.2 - '@rushstack/node-core-library': 3.44.2 + '@microsoft/tsdoc': 0.14.1 + '@microsoft/tsdoc-config': 0.16.1 + '@rushstack/node-core-library': 3.49.0 dev: true - /@microsoft/api-extractor/7.19.2: - resolution: {integrity: sha512-LxSa9lwp7eYtM4i5y/1n79QpotPKlmpCrVQbkb0LAHE1sCRHpZDTb6p3cMJthDhYPMjAYKOLfq639GwtZrg23Q==} + /@microsoft/api-extractor/7.28.6: + resolution: {integrity: sha512-RNUokJTlBGD0ax/Jo8xLPWv4s6IboqrYrcabEEh6rFadO/tVPoV/R5YHtEeZ2q4ubvwhHTtX3sRm+p4fJo/3Sg==} hasBin: true dependencies: - '@microsoft/api-extractor-model': 7.15.1 - '@microsoft/tsdoc': 0.13.2 - '@microsoft/tsdoc-config': 0.15.2 - '@rushstack/node-core-library': 3.44.2 - '@rushstack/rig-package': 0.3.6 - '@rushstack/ts-command-line': 4.10.5 + '@microsoft/api-extractor-model': 7.22.1 + '@microsoft/tsdoc': 0.14.1 + '@microsoft/tsdoc-config': 0.16.1 + '@rushstack/node-core-library': 3.49.0 + '@rushstack/rig-package': 0.3.13 + '@rushstack/ts-command-line': 4.12.1 colors: 1.2.5 lodash: 4.17.21 resolve: 1.17.0 - semver: 7.3.5 + semver: 7.3.7 source-map: 0.6.1 - typescript: 4.5.5 + typescript: 4.6.4 dev: true - /@microsoft/tsdoc-config/0.15.2: - resolution: {integrity: sha512-mK19b2wJHSdNf8znXSMYVShAHktVr/ib0Ck2FA3lsVBSEhSI/TfXT7DJQkAYgcztTuwazGcg58ZjYdk0hTCVrA==} + /@microsoft/tsdoc-config/0.16.1: + resolution: {integrity: sha512-2RqkwiD4uN6MLnHFljqBlZIXlt/SaUT6cuogU1w2ARw4nKuuppSmR0+s+NC+7kXBQykd9zzu0P4HtBpZT5zBpQ==} dependencies: - '@microsoft/tsdoc': 0.13.2 + '@microsoft/tsdoc': 0.14.1 ajv: 6.12.6 jju: 1.4.0 resolve: 1.19.0 dev: true - /@microsoft/tsdoc/0.13.2: - resolution: {integrity: sha512-WrHvO8PDL8wd8T2+zBGKrMwVL5IyzR3ryWUsl0PXgEV0QHup4mTLi0QcATefGI6Gx9Anu7vthPyyyLpY0EpiQg==} + /@microsoft/tsdoc/0.14.1: + resolution: {integrity: sha512-6Wci+Tp3CgPt/B9B0a3J4s3yMgLNSku6w5TV6mN+61C71UqsRBv2FUibBf3tPGlNxebgPHMEUzKpb1ggE8KCKw==} dev: true /@netlify/functions/1.0.0: @@ -1371,7 +1113,7 @@ packages: globby: 13.1.2 hash-sum: 2.0.0 ignore: 5.2.0 - jiti: 1.13.0 + jiti: 1.14.0 knitwork: 0.1.2 lodash.template: 4.5.0 mlly: 0.5.4 @@ -1390,11 +1132,11 @@ packages: - webpack dev: true - /@nuxt/kit/3.0.0-rc.4: - resolution: {integrity: sha512-ZBSeHFy3fPUx0equCtyP6eVUAZQWwRqTp2YnHSFqM5+yhN5aTGo8gBlfwttVBr4yhFBpGFRHhQj/iNPqrCeTnQ==} + /@nuxt/kit/3.0.0-rc.6: + resolution: {integrity: sha512-+lxSd6dSWlAzMXfGOPcY4856xnMF1Ck1rycFUZ+K2QYiDXphq/fiW2eMaWLVvqgPyL2Box2WzVDZJ6C5ceptcw==} engines: {node: ^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0} dependencies: - '@nuxt/schema': 3.0.0-rc.4 + '@nuxt/schema': 3.0.0-rc.6 c12: 0.2.8 consola: 2.15.3 defu: 6.0.0 @@ -1404,13 +1146,13 @@ packages: jiti: 1.14.0 knitwork: 0.1.2 lodash.template: 4.5.0 - mlly: 0.5.4 + mlly: 0.5.5 pathe: 0.3.2 pkg-types: 0.3.3 scule: 0.2.1 semver: 7.3.7 unctx: 1.1.4 - unimport: 0.2.10 + unimport: 0.4.7 untyped: 0.4.4 transitivePeerDependencies: - esbuild @@ -1419,11 +1161,11 @@ packages: - vite - webpack - /@nuxt/kit/3.0.0-rc.4_xwkqxbepnvmjxhyzf5mpnkifwy: - resolution: {integrity: sha512-ZBSeHFy3fPUx0equCtyP6eVUAZQWwRqTp2YnHSFqM5+yhN5aTGo8gBlfwttVBr4yhFBpGFRHhQj/iNPqrCeTnQ==} + /@nuxt/kit/3.0.0-rc.6_xwkqxbepnvmjxhyzf5mpnkifwy: + resolution: {integrity: sha512-+lxSd6dSWlAzMXfGOPcY4856xnMF1Ck1rycFUZ+K2QYiDXphq/fiW2eMaWLVvqgPyL2Box2WzVDZJ6C5ceptcw==} engines: {node: ^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0} dependencies: - '@nuxt/schema': 3.0.0-rc.4_xwkqxbepnvmjxhyzf5mpnkifwy + '@nuxt/schema': 3.0.0-rc.6_xwkqxbepnvmjxhyzf5mpnkifwy c12: 0.2.8 consola: 2.15.3 defu: 6.0.0 @@ -1433,13 +1175,13 @@ packages: jiti: 1.14.0 knitwork: 0.1.2 lodash.template: 4.5.0 - mlly: 0.5.4 + mlly: 0.5.5 pathe: 0.3.2 pkg-types: 0.3.3 scule: 0.2.1 semver: 7.3.7 unctx: 1.1.4_xwkqxbepnvmjxhyzf5mpnkifwy - unimport: 0.2.10_xwkqxbepnvmjxhyzf5mpnkifwy + unimport: 0.4.7_xwkqxbepnvmjxhyzf5mpnkifwy untyped: 0.4.4 transitivePeerDependencies: - esbuild @@ -1469,7 +1211,7 @@ packages: c12: 0.2.8 create-require: 1.1.1 defu: 6.0.0 - jiti: 1.13.0 + jiti: 1.14.0 pathe: 0.3.2 postcss-import-resolver: 2.0.0 scule: 0.2.1 @@ -1481,21 +1223,42 @@ packages: - rollup - vite - webpack + dev: true - /@nuxt/schema/3.0.0-rc.4_xwkqxbepnvmjxhyzf5mpnkifwy: - resolution: {integrity: sha512-5yjfKvPJ/NboevQYZLyO1SS9nJW6KHtdd7Ei61D19gYGtnN+aOpxOnUX08A1rZMb3G2Cw5JRxVeF9+AfBYefJg==} + /@nuxt/schema/3.0.0-rc.6: + resolution: {integrity: sha512-BcD5YtWRhn+jU2DlzuI1TeITFeOt5x6qm2KeaU/d5jzJ0oZDzmZwKsAimLtRbHwyU6/kKa+zFbK6pp5obm1XLg==} engines: {node: ^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0} dependencies: c12: 0.2.8 create-require: 1.1.1 defu: 6.0.0 - jiti: 1.13.0 + jiti: 1.14.0 pathe: 0.3.2 postcss-import-resolver: 2.0.0 scule: 0.2.1 std-env: 3.1.1 ufo: 0.8.5 - unimport: 0.2.10_xwkqxbepnvmjxhyzf5mpnkifwy + unimport: 0.4.7 + transitivePeerDependencies: + - esbuild + - rollup + - vite + - webpack + + /@nuxt/schema/3.0.0-rc.6_xwkqxbepnvmjxhyzf5mpnkifwy: + resolution: {integrity: sha512-BcD5YtWRhn+jU2DlzuI1TeITFeOt5x6qm2KeaU/d5jzJ0oZDzmZwKsAimLtRbHwyU6/kKa+zFbK6pp5obm1XLg==} + engines: {node: ^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0} + dependencies: + c12: 0.2.8 + create-require: 1.1.1 + defu: 6.0.0 + jiti: 1.14.0 + pathe: 0.3.2 + postcss-import-resolver: 2.0.0 + scule: 0.2.1 + std-env: 3.1.1 + ufo: 0.8.5 + unimport: 0.4.7_xwkqxbepnvmjxhyzf5mpnkifwy transitivePeerDependencies: - esbuild - rollup @@ -1519,7 +1282,7 @@ packages: git-url-parse: 11.6.0 inquirer: 8.2.4 is-docker: 3.0.0 - jiti: 1.13.0 + jiti: 1.14.0 mri: 1.2.0 nanoid: 3.3.4 node-fetch: 3.2.6 @@ -1545,7 +1308,7 @@ packages: peerDependencies: vue: ^3.2.37 dependencies: - '@nuxt/kit': 3.0.0-rc.4_xwkqxbepnvmjxhyzf5mpnkifwy + '@nuxt/kit': 3.0.0-rc.6_xwkqxbepnvmjxhyzf5mpnkifwy '@rollup/plugin-replace': 4.0.0_rollup@2.75.7 '@vitejs/plugin-vue': 2.3.3_vite@2.9.14+vue@3.2.37 '@vitejs/plugin-vue-jsx': 1.3.10 @@ -1860,8 +1623,8 @@ packages: estree-walker: 2.0.2 picomatch: 2.3.1 - /@rushstack/node-core-library/3.44.2: - resolution: {integrity: sha512-lQ8Ct267UKkNSJSDxpBWn7SyyITWQ9l3Xqww0V+YY0rMt02r9eiGvwwPaU1ugJW7IMVo6r/HXvgbmpOSPyzGyg==} + /@rushstack/node-core-library/3.49.0: + resolution: {integrity: sha512-yBJRzGgUNFwulVrwwBARhbGaHsxVMjsZ9JwU1uSBbqPYCdac+t2HYdzi4f4q/Zpgb0eNbwYj2yxgHYpJORNEaw==} dependencies: '@types/node': 12.20.24 colors: 1.2.5 @@ -1869,20 +1632,20 @@ packages: import-lazy: 4.0.0 jju: 1.4.0 resolve: 1.17.0 - semver: 7.3.5 + semver: 7.3.7 timsort: 0.3.0 - z-schema: 5.0.2 + z-schema: 5.0.3 dev: true - /@rushstack/rig-package/0.3.6: - resolution: {integrity: sha512-H/uFsAT6cD4JCYrlQXYMZg+wPVECByFoJLGqfGRiTwSS5ngQw9QxnFV2mPG2LrxFUsMjLQ2lsrYr523700XzfA==} + /@rushstack/rig-package/0.3.13: + resolution: {integrity: sha512-4/2+yyA/uDl7LQvtYtFs1AkhSWuaIGEKhP9/KK2nNARqOVc5eCXmu1vyOqr5mPvNq7sHoIR+sG84vFbaKYGaDA==} dependencies: resolve: 1.17.0 strip-json-comments: 3.1.1 dev: true - /@rushstack/ts-command-line/4.10.5: - resolution: {integrity: sha512-5fVlTDbKsJ5WyT6L7NrnOlLG3uoITKxoqTPP2j0QZEi95kPbVT4+VPZaXXDJtkrao9qrIyig8pLK9WABY1bb3w==} + /@rushstack/ts-command-line/4.12.1: + resolution: {integrity: sha512-S1Nev6h/kNnamhHeGdp30WgxZTA+B76SJ/P721ctP7DrnC+rrjAc6h/R80I4V0cA2QuEEcMdVOQCtK2BTjsOiQ==} dependencies: '@types/argparse': 1.0.38 argparse: 1.0.10 @@ -2075,6 +1838,10 @@ packages: resolution: {integrity: sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==} dev: true + /@types/web-bluetooth/0.0.14: + resolution: {integrity: sha512-5d2RhCard1nQUC3aHcq/gHzWYO6K0WJmAbjO7mQJgCQKtZpgXxv1rOM6O/dBDhDYYVutk1sciOgNSe+5YyfM8A==} + dev: false + /@types/yargs-parser/21.0.0: resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==} dev: true @@ -2090,7 +1857,7 @@ packages: hasBin: true dependencies: '@mapbox/node-pre-gyp': 1.0.9 - acorn: 8.7.1 + acorn: 8.8.0 bindings: 1.5.0 estree-walker: 2.0.2 glob: 7.2.3 @@ -2108,26 +1875,16 @@ packages: resolution: {integrity: sha512-Cf5zznh4yNMiEMBfTOztaDVDmK1XXfgxClzOSUVUc8WAmHzogrCUeM8B05ABzuGtg0D1amfng+mUmSIOFGP3Pw==} engines: {node: '>=12.0.0'} dependencies: - '@babel/core': 7.18.5 - '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.18.5 - '@babel/plugin-transform-typescript': 7.18.8_@babel+core@7.18.5 + '@babel/core': 7.18.9 + '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.18.9 + '@babel/plugin-transform-typescript': 7.18.8_@babel+core@7.18.9 '@rollup/pluginutils': 4.2.1 - '@vue/babel-plugin-jsx': 1.1.1_@babel+core@7.18.5 + '@vue/babel-plugin-jsx': 1.1.1_@babel+core@7.18.9 hash-sum: 2.0.0 transitivePeerDependencies: - supports-color dev: true - /@vitejs/plugin-vue/2.3.1_vite@2.9.0: - resolution: {integrity: sha512-YNzBt8+jt6bSwpt7LP890U1UcTOIZZxfpE5WOJ638PNxSEKOqAi0+FSKS0nVeukfdZ0Ai/H7AFd6k3hayfGZqQ==} - engines: {node: '>=12.0.0'} - peerDependencies: - vite: ^2.5.10 - vue: ^3.2.25 - dependencies: - vite: 2.9.0 - dev: true - /@vitejs/plugin-vue/2.3.1_vite@2.9.0+vue@3.2.31: resolution: {integrity: sha512-YNzBt8+jt6bSwpt7LP890U1UcTOIZZxfpE5WOJ638PNxSEKOqAi0+FSKS0nVeukfdZ0Ai/H7AFd6k3hayfGZqQ==} engines: {node: '>=12.0.0'} @@ -2150,6 +1907,16 @@ packages: vue: 3.2.37 dev: true + /@vitejs/plugin-vue/3.0.1_vite@3.0.3: + resolution: {integrity: sha512-Ll9JgxG7ONIz/XZv3dssfoMUDu9qAnlJ+km+pBA0teYSXzwPCIzS/e1bmwNYl5dcQGs677D21amgfYAnzMl17A==} + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + vite: ^3.0.0 + vue: ^3.2.25 + dependencies: + vite: 3.0.3 + dev: true + /@volar/code-gen/0.39.0: resolution: {integrity: sha512-56ycx16FoeDrjVuQ2RKIRmk3paFuIG4eIZLMpxypGKOlhFxS9/nB2eumln2e1jVlnAWeTcFw5V1/eYpDTazHLA==} dependencies: @@ -2198,14 +1965,14 @@ packages: resolution: {integrity: sha512-hz4R8tS5jMn8lDq6iD+yWL6XNB699pGIVLk7WSJnn1dbpjaazsjZQkieJoRX6gW5zpYSCFqQ7jUquPNY65tQYA==} dev: true - /@vue/babel-plugin-jsx/1.1.1_@babel+core@7.18.5: + /@vue/babel-plugin-jsx/1.1.1_@babel+core@7.18.9: resolution: {integrity: sha512-j2uVfZjnB5+zkcbc/zsOc0fSNGCMMjaEXP52wdwdIfn0qjFfEYpYZBFKFg+HHnQeJCVrjOeO0YxgaL7DMrym9w==} dependencies: '@babel/helper-module-imports': 7.16.7 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.5 - '@babel/template': 7.16.7 - '@babel/traverse': 7.18.5 - '@babel/types': 7.18.4 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.9 + '@babel/template': 7.18.6 + '@babel/traverse': 7.18.9 + '@babel/types': 7.18.9 '@vue/babel-helper-vue-transform-on': 1.0.2 camelcase: 6.3.0 html-tags: 3.2.0 @@ -2395,8 +2162,8 @@ packages: vue: ^3.0.1 dev: true - /@vueuse/core/7.7.1: - resolution: {integrity: sha512-PRRgbATMpoeUmkCEBtUeJgOwtew8s+4UsEd+Pm7MhkjL2ihCNrSqxNVtM6NFE4uP2sWnkGcZpCjPuNSxowJ1Ow==} + /@vueuse/core/8.9.4: + resolution: {integrity: sha512-B/Mdj9TK1peFyWaPof+Zf/mP9XuGAngaJZBwPaXBvU3aCTZlx3ltlrFFFyMV4iGBwsjSCeUCgZrtkEj9dS2Y3Q==} peerDependencies: '@vue/composition-api': ^1.1.0 vue: ^2.6.0 || ^3.2.0 @@ -2406,8 +2173,10 @@ packages: vue: optional: true dependencies: - '@vueuse/shared': 7.7.1 - vue-demi: 0.12.5 + '@types/web-bluetooth': 0.0.14 + '@vueuse/metadata': 8.9.4 + '@vueuse/shared': 8.9.4 + vue-demi: 0.13.5 dev: false /@vueuse/head/0.7.6_vue@3.2.37: @@ -2418,8 +2187,12 @@ packages: vue: 3.2.37 dev: true - /@vueuse/shared/7.7.1: - resolution: {integrity: sha512-rN2qd22AUl7VdBxihagWyhUNHCyVk9IpvBTTfHoLH9G7rGE552X1f+zeCfehuno0zXif13jPw+icW/wn2a0rnQ==} + /@vueuse/metadata/8.9.4: + resolution: {integrity: sha512-IwSfzH80bnJMzqhaapqJl9JRIiyQU0zsRGEgnxN6jhq7992cPUJIRfV+JHRIZXjYqbwt07E1gTEp0R0zPJ1aqw==} + dev: false + + /@vueuse/shared/8.9.4: + resolution: {integrity: sha512-wt+T30c4K6dGRMVqPddexEVLa28YwxW5OFIPmzUHICjphfAuBFTTdDoyqREZNDOFJZ44ARH1WWQNCUK8koJ+Ag==} peerDependencies: '@vue/composition-api': ^1.1.0 vue: ^2.6.0 || ^3.2.0 @@ -2429,7 +2202,7 @@ packages: vue: optional: true dependencies: - vue-demi: 0.12.5 + vue-demi: 0.13.5 dev: false /JSONStream/1.3.5: @@ -2466,21 +2239,16 @@ packages: hasBin: true dev: true - /acorn/8.7.0: - resolution: {integrity: sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==} - engines: {node: '>=0.4.0'} - hasBin: true - /acorn/8.7.1: resolution: {integrity: sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==} engines: {node: '>=0.4.0'} hasBin: true + dev: true /acorn/8.8.0: resolution: {integrity: sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==} engines: {node: '>=0.4.0'} hasBin: true - dev: true /add-stream/1.0.0: resolution: {integrity: sha1-anmQQ3ynNtXhKI25K9MmbV9csqo=} @@ -2834,6 +2602,7 @@ packages: escalade: 3.1.1 node-releases: 2.0.5 picocolors: 1.0.0 + dev: true /browserslist/4.21.2: resolution: {integrity: sha512-MonuOgAtUB46uP5CezYbRaYKBNt2LxP0yX+Pmj4LkcDFGkn9Cbpi83d9sCjwQDErXsIJSzY5oKGDbgOlF/LPAA==} @@ -2844,7 +2613,6 @@ packages: electron-to-chromium: 1.4.199 node-releases: 2.0.6 update-browserslist-db: 1.0.5_browserslist@4.21.2 - dev: true /bser/2.1.1: resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} @@ -2890,7 +2658,7 @@ packages: dotenv: 16.0.1 gittar: 0.1.1 jiti: 1.14.0 - mlly: 0.5.4 + mlly: 0.5.5 pathe: 0.3.2 rc9: 1.2.2 @@ -2933,7 +2701,7 @@ packages: /caniuse-api/3.0.0: resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} dependencies: - browserslist: 4.20.4 + browserslist: 4.21.2 caniuse-lite: 1.0.30001355 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 @@ -2941,10 +2709,10 @@ packages: /caniuse-lite/1.0.30001355: resolution: {integrity: sha512-Sd6pjJHF27LzCB7pT7qs+kuX2ndurzCzkpJl6Qct7LPSZ9jn0bkOA8mdgMgmqnQAWLVOOGjLpc+66V57eLtb1g==} + dev: true /caniuse-lite/1.0.30001370: resolution: {integrity: sha512-3PDmaP56wz/qz7G508xzjx8C+MC2qEm4SYhSEzC9IBROo+dGXFWRuaXkWti0A9tuI00g+toiriVqxtWMgl350g==} - dev: true /chalk/2.4.2: resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} @@ -3116,6 +2884,10 @@ packages: resolution: {integrity: sha512-hUewv7oMjCp+wkBv5Rm0v87eJhq4woh5rSR+42YSQJKecCqgIqNkZ6lAlQms/BwHPJA5NKMRlpxPRv0n8HQW6g==} dev: true + /colorette/2.0.19: + resolution: {integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==} + dev: true + /colors/1.2.5: resolution: {integrity: sha512-erNRLao/Y3Fv54qUa0LBB+//Uf3YwMUmdJinN20yMXm9zdKKqH9wt7R9IIVZ+K7ShzfpLV/Zg8+VyrBJYB4lpg==} engines: {node: '>=0.1.90'} @@ -3147,8 +2919,8 @@ packages: engines: {node: '>= 12'} dev: true - /commander/9.3.0: - resolution: {integrity: sha512-hv95iU5uXPbK83mjrJKuZyFM/LBAoCV/XhVGkS5Je6tl7sxr6A0ITMw5WoRV46/UaJ46Nllm3Xt7IaJhXTIkzw==} + /commander/9.4.0: + resolution: {integrity: sha512-sRPT+umqkz90UA8M1yqYfnHlZA7fF6nSphDtxeywPZ49ysjxDQybzk13CL+mXekDRG92skbcqCLVovuCusNmFw==} engines: {node: ^12.20.0 || >=14} dev: true @@ -3559,19 +3331,6 @@ packages: dependencies: ms: 2.1.2 - /debug/4.3.4_supports-color@9.2.2: - resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - dependencies: - ms: 2.1.2 - supports-color: 9.2.2 - dev: true - /decamelize-keys/1.1.0: resolution: {integrity: sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk=} engines: {node: '>=0.10.0'} @@ -3744,10 +3503,10 @@ packages: /electron-to-chromium/1.4.158: resolution: {integrity: sha512-gppO3/+Y6sP432HtvwvuU8S+YYYLH4PmAYvQwqUtt9HDOmEsBwQfLnK9T8+1NIKwAS1BEygIjTaATC4H5EzvxQ==} + dev: true /electron-to-chromium/1.4.199: resolution: {integrity: sha512-WIGME0Cs7oob3mxsJwHbeWkH0tYkIE/sjkJ8ML2BYmuRcjhRl/q5kVDXG7W9LOOKwzPU5M0LBlXRq9rlSgnNlg==} - dev: true /emittery/0.10.2: resolution: {integrity: sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==} @@ -3822,6 +3581,7 @@ packages: cpu: [x64] os: [android] requiresBuild: true + dev: false optional: true /esbuild-android-64/0.14.48: @@ -3856,6 +3616,7 @@ packages: cpu: [arm64] os: [android] requiresBuild: true + dev: false optional: true /esbuild-android-arm64/0.14.48: @@ -3890,6 +3651,7 @@ packages: cpu: [x64] os: [darwin] requiresBuild: true + dev: false optional: true /esbuild-darwin-64/0.14.48: @@ -3924,6 +3686,7 @@ packages: cpu: [arm64] os: [darwin] requiresBuild: true + dev: false optional: true /esbuild-darwin-arm64/0.14.48: @@ -3958,6 +3721,7 @@ packages: cpu: [x64] os: [freebsd] requiresBuild: true + dev: false optional: true /esbuild-freebsd-64/0.14.48: @@ -3992,6 +3756,7 @@ packages: cpu: [arm64] os: [freebsd] requiresBuild: true + dev: false optional: true /esbuild-freebsd-arm64/0.14.48: @@ -4026,6 +3791,7 @@ packages: cpu: [ia32] os: [linux] requiresBuild: true + dev: false optional: true /esbuild-linux-32/0.14.48: @@ -4060,6 +3826,7 @@ packages: cpu: [x64] os: [linux] requiresBuild: true + dev: false optional: true /esbuild-linux-64/0.14.48: @@ -4094,6 +3861,7 @@ packages: cpu: [arm] os: [linux] requiresBuild: true + dev: false optional: true /esbuild-linux-arm/0.14.48: @@ -4128,6 +3896,7 @@ packages: cpu: [arm64] os: [linux] requiresBuild: true + dev: false optional: true /esbuild-linux-arm64/0.14.48: @@ -4162,6 +3931,7 @@ packages: cpu: [mips64el] os: [linux] requiresBuild: true + dev: false optional: true /esbuild-linux-mips64le/0.14.48: @@ -4196,6 +3966,7 @@ packages: cpu: [ppc64] os: [linux] requiresBuild: true + dev: false optional: true /esbuild-linux-ppc64le/0.14.48: @@ -4222,6 +3993,7 @@ packages: cpu: [riscv64] os: [linux] requiresBuild: true + dev: false optional: true /esbuild-linux-riscv64/0.14.48: @@ -4248,6 +4020,7 @@ packages: cpu: [s390x] os: [linux] requiresBuild: true + dev: false optional: true /esbuild-linux-s390x/0.14.48: @@ -4282,6 +4055,7 @@ packages: cpu: [x64] os: [netbsd] requiresBuild: true + dev: false optional: true /esbuild-netbsd-64/0.14.48: @@ -4316,6 +4090,7 @@ packages: cpu: [x64] os: [openbsd] requiresBuild: true + dev: false optional: true /esbuild-openbsd-64/0.14.48: @@ -4350,6 +4125,7 @@ packages: cpu: [x64] os: [sunos] requiresBuild: true + dev: false optional: true /esbuild-sunos-64/0.14.48: @@ -4384,6 +4160,7 @@ packages: cpu: [ia32] os: [win32] requiresBuild: true + dev: false optional: true /esbuild-windows-32/0.14.48: @@ -4418,6 +4195,7 @@ packages: cpu: [x64] os: [win32] requiresBuild: true + dev: false optional: true /esbuild-windows-64/0.14.48: @@ -4452,6 +4230,7 @@ packages: cpu: [arm64] os: [win32] requiresBuild: true + dev: false optional: true /esbuild-windows-arm64/0.14.48: @@ -4528,6 +4307,7 @@ packages: esbuild-windows-32: 0.14.29 esbuild-windows-64: 0.14.29 esbuild-windows-arm64: 0.14.29 + dev: false /esbuild/0.14.48: resolution: {integrity: sha512-w6N1Yn5MtqK2U1/WZTX9ZqUVb8IOLZkZ5AdHkT6x3cHDMVsYWC7WPdiLmx19w3i4Rwzy5LqsEMtVihG3e4rFzA==} @@ -4884,7 +4664,7 @@ packages: resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} engines: {node: '>=6 <7 || >=8'} dependencies: - graceful-fs: 4.2.9 + graceful-fs: 4.2.10 jsonfile: 4.0.0 universalify: 0.1.2 dev: true @@ -5417,12 +5197,6 @@ packages: ci-info: 1.6.0 dev: true - /is-core-module/2.8.1: - resolution: {integrity: sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==} - dependencies: - has: 1.0.3 - dev: true - /is-core-module/2.9.0: resolution: {integrity: sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==} dependencies: @@ -6085,13 +5859,14 @@ packages: /jiti/1.13.0: resolution: {integrity: sha512-/n9mNxZj/HDSrincJ6RP+L+yXbpnB8FybySBa+IjIaoH9FIxBbrbRT5XUbe8R7zuVM2AQqNMNDDqz0bzx3znOQ==} hasBin: true + dev: true /jiti/1.14.0: resolution: {integrity: sha512-4IwstlaKQc9vCTC+qUXLM1hajy2ImiL9KnLvVYiaHOtS/v3wRjhLlGl121AmgDgx/O43uKmxownJghS5XMya2A==} hasBin: true /jju/1.4.0: - resolution: {integrity: sha1-o6vicYryQaKykE+EpiWXDzia4yo=} + resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==} dev: true /joycon/3.1.1: @@ -6184,15 +5959,15 @@ packages: /jsonc-parser/3.0.0: resolution: {integrity: sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==} + dev: true /jsonc-parser/3.1.0: resolution: {integrity: sha512-DRf0QjnNeCUds3xTjKlQQ3DpJD51GvDjJfnxUVWg6PZTo2otSm+slzNAxU/35hF8/oJIKoG9slq30JYOsF2azg==} - dev: true /jsonfile/4.0.0: - resolution: {integrity: sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=} + resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} optionalDependencies: - graceful-fs: 4.2.9 + graceful-fs: 4.2.10 dev: true /jsonfile/6.1.0: @@ -6259,27 +6034,27 @@ packages: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} dev: true - /lint-staged/12.5.0_enquirer@2.3.6: - resolution: {integrity: sha512-BKLUjWDsKquV/JuIcoQW4MSAI3ggwEImF1+sB4zaKvyVx1wBk3FsG7UK9bpnmBTN1pm7EH2BBcMwINJzCRv12g==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + /lint-staged/13.0.3_enquirer@2.3.6: + resolution: {integrity: sha512-9hmrwSCFroTSYLjflGI8Uk+GWAwMB4OlpU4bMJEAT5d/llQwtYKoim4bLOyLCuWFAhWEupE0vkIFqtw/WIsPug==} + engines: {node: ^14.13.1 || >=16.0.0} hasBin: true dependencies: cli-truncate: 3.1.0 - colorette: 2.0.16 - commander: 9.3.0 - debug: 4.3.4_supports-color@9.2.2 - execa: 5.1.1 + colorette: 2.0.19 + commander: 9.4.0 + debug: 4.3.4 + execa: 6.1.0 lilconfig: 2.0.5 listr2: 4.0.5_enquirer@2.3.6 micromatch: 4.0.5 normalize-path: 3.0.0 object-inspect: 1.12.2 - pidtree: 0.5.0 + pidtree: 0.6.0 string-argv: 0.3.1 - supports-color: 9.2.2 - yaml: 1.10.2 + yaml: 2.1.1 transitivePeerDependencies: - enquirer + - supports-color dev: true /listhen/0.2.13: @@ -6304,12 +6079,12 @@ packages: optional: true dependencies: cli-truncate: 2.1.0 - colorette: 2.0.16 + colorette: 2.0.19 enquirer: 2.3.6 log-update: 4.0.0 p-map: 4.0.0 rfdc: 1.3.0 - rxjs: 7.5.5 + rxjs: 7.5.6 through: 2.3.8 wrap-ansi: 7.0.0 dev: true @@ -6327,6 +6102,11 @@ packages: /local-pkg/0.4.1: resolution: {integrity: sha512-lL87ytIGP2FU5PWwNDo0w3WhIo2gopIAxPg9RxDYF7m4rr5ahuZxP22xnJHIvaLTe4Z9P6uKKY2UHiwyB4pcrw==} engines: {node: '>=14'} + dev: true + + /local-pkg/0.4.2: + resolution: {integrity: sha512-mlERgSPrbxU3BP4qBqAvvwlgW4MTg78iwJdGGnv7kibKjWcJksrG3t6LB5lXI93wXRDvG4NpUgJFmTG4T6rdrg==} + engines: {node: '>=14'} /locate-path/2.0.0: resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==} @@ -6363,7 +6143,7 @@ packages: dev: true /lodash.get/4.4.2: - resolution: {integrity: sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=} + resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==} dev: true /lodash.isarguments/3.1.0: @@ -6371,7 +6151,7 @@ packages: dev: true /lodash.isequal/4.5.0: - resolution: {integrity: sha1-QVxEePK8wwEgwizhDtMib30+GOA=} + resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==} dev: true /lodash.ismatch/4.4.0: @@ -6708,6 +6488,13 @@ packages: dependencies: pathe: 0.3.2 pkg-types: 0.3.3 + dev: true + + /mlly/0.5.5: + resolution: {integrity: sha512-2R4JT/SxRDPexomw4rmHYY/gWAGmL9Kkq1OR76Ua6w+P340a1aBDTWzKo2kAlxzrG82OdXs5VB9Lmcmyit0Obg==} + dependencies: + pathe: 0.3.2 + pkg-types: 0.3.3 /modify-values/1.0.1: resolution: {integrity: sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==} @@ -6823,7 +6610,7 @@ packages: table: 6.8.0 ufo: 0.8.5 unenv: 0.5.2 - unimport: 0.4.4_zqo64ogfzzycugxswskc4gmbhu + unimport: 0.4.7_zqo64ogfzzycugxswskc4gmbhu unstorage: 0.5.4 transitivePeerDependencies: - bufferutil @@ -6881,10 +6668,10 @@ packages: /node-releases/2.0.5: resolution: {integrity: sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q==} + dev: true /node-releases/2.0.6: resolution: {integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==} - dev: true /nopt/5.0.0: resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==} @@ -6982,7 +6769,7 @@ packages: hasBin: true dependencies: '@nuxt/devalue': 2.0.0 - '@nuxt/kit': 3.0.0-rc.4 + '@nuxt/kit': 3.0.0-rc.6 '@nuxt/schema': 3.0.0-rc.4 '@nuxt/telemetry': 2.1.3 '@nuxt/ui-templates': 0.1.1 @@ -7310,8 +7097,8 @@ packages: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} engines: {node: '>=8.6'} - /pidtree/0.5.0: - resolution: {integrity: sha512-9nxspIM7OpZuhBxPg73Zvyq7j1QMPMPsGKTqRc2XOaFQauDvoNz9fM1Wdkjmeo7l9GXOZiRs97sPkuayl39wjA==} + /pidtree/0.6.0: + resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==} engines: {node: '>=0.10'} hasBin: true dev: true @@ -7341,8 +7128,8 @@ packages: /pkg-types/0.3.3: resolution: {integrity: sha512-6AJcCMnjUQPQv/Wk960w0TOmjhdjbeaQJoSKWRQv9N3rgkessCu6J0Ydsog/nw1MbpnxHuPzYbfOn2KmlZO1FA==} dependencies: - jsonc-parser: 3.0.0 - mlly: 0.5.4 + jsonc-parser: 3.1.0 + mlly: 0.5.5 pathe: 0.3.2 /postcss-calc/8.2.4_postcss@8.4.14: @@ -7361,7 +7148,7 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.20.4 + browserslist: 4.21.2 caniuse-api: 3.0.0 colord: 2.9.2 postcss: 8.4.14 @@ -7374,7 +7161,7 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.20.4 + browserslist: 4.21.2 postcss: 8.4.14 postcss-value-parser: 4.2.0 dev: true @@ -7449,7 +7236,7 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.20.4 + browserslist: 4.21.2 caniuse-api: 3.0.0 cssnano-utils: 3.1.0_postcss@8.4.14 postcss: 8.4.14 @@ -7484,7 +7271,7 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.20.4 + browserslist: 4.21.2 cssnano-utils: 3.1.0_postcss@8.4.14 postcss: 8.4.14 postcss-value-parser: 4.2.0 @@ -7565,7 +7352,7 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.20.4 + browserslist: 4.21.2 postcss: 8.4.14 postcss-value-parser: 4.2.0 dev: true @@ -7608,7 +7395,7 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.20.4 + browserslist: 4.21.2 caniuse-api: 3.0.0 postcss: 8.4.14 dev: true @@ -7951,7 +7738,7 @@ packages: /resolve/1.19.0: resolution: {integrity: sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==} dependencies: - is-core-module: 2.8.1 + is-core-module: 2.9.0 path-parse: 1.0.7 dev: true @@ -8079,7 +7866,7 @@ packages: terser: 5.12.1 dev: true - /rollup-plugin-typescript2/0.32.1_czofgt6r7tjeneyyjielmh4yka: + /rollup-plugin-typescript2/0.32.1_55kiftncucr43pz4hskma6yi2q: resolution: {integrity: sha512-RanO8bp1WbeMv0bVlgcbsFNCn+Y3rX7wF97SQLDxf0fMLsg0B/QFF005t4AsGUcDgF3aKJHoqt4JF2xVaABeKw==} peerDependencies: rollup: '>=1.26.3' @@ -8091,7 +7878,7 @@ packages: resolve: 1.22.1 rollup: 2.77.0 tslib: 2.4.0 - typescript: 4.6.3 + typescript: 4.7.4 dev: true /rollup-plugin-visualizer/5.6.0_rollup@2.75.7: @@ -8153,6 +7940,12 @@ packages: tslib: 2.4.0 dev: true + /rxjs/7.5.6: + resolution: {integrity: sha512-dnyv2/YsXhnm461G+R/Pe5bWP41Nm6LBXEYWI6eiFP4fiwx6WRI/CD0zbdVAudd9xwLEF2IDcKXLHit0FYjUzw==} + dependencies: + tslib: 2.4.0 + dev: true + /safe-buffer/5.1.2: resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} @@ -8189,14 +7982,6 @@ packages: resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} hasBin: true - /semver/7.3.5: - resolution: {integrity: sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==} - engines: {node: '>=10'} - hasBin: true - dependencies: - lru-cache: 6.0.0 - dev: true - /semver/7.3.7: resolution: {integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==} engines: {node: '>=10'} @@ -8588,7 +8373,7 @@ packages: /strip-literal/0.4.0: resolution: {integrity: sha512-ql/sBDoJOybTKSIOWrrh8kgUEMjXMwRAkZTD0EwiwxQH/6tTPkZvMIEjp0CRlpi6V5FMiJyvxeRkEi1KrGISoA==} dependencies: - acorn: 8.7.1 + acorn: 8.8.0 /stylehacks/5.1.0_postcss@8.4.14: resolution: {integrity: sha512-SzLmvHQTrIWfSgljkQCw2++C9+Ne91d/6Sp92I8c5uHTcy/PgeHamwITIbBW9wnFTY/3ZfSXR9HIL6Ikqmcu6Q==} @@ -8596,7 +8381,7 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.20.4 + browserslist: 4.21.2 postcss: 8.4.14 postcss-selector-parser: 6.0.10 dev: true @@ -8634,11 +8419,6 @@ packages: has-flag: 4.0.0 dev: true - /supports-color/9.2.2: - resolution: {integrity: sha512-XC6g/Kgux+rJXmwokjm9ECpD6k/smUoS5LKlUCcsYr4IY3rW0XyAympon2RmxGrlnZURMpg5T18gWDP9CsHXFA==} - engines: {node: '>=12'} - dev: true - /supports-hyperlinks/2.2.0: resolution: {integrity: sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==} engines: {node: '>=8'} @@ -8794,7 +8574,7 @@ packages: dev: true /through/2.3.8: - resolution: {integrity: sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=} + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} dev: true /through2/2.0.5: @@ -8811,7 +8591,7 @@ packages: dev: true /timsort/0.3.0: - resolution: {integrity: sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=} + resolution: {integrity: sha512-qsdtZH+vMoCARQtyod4imc2nIJwg9Cc7lPRrw9CzF8ZKR0khdr8+2nX80PBhET3tcyTtJDxAffGh2rXH4tyU8A==} dev: true /tiny-invariant/1.2.0: @@ -8920,10 +8700,10 @@ packages: typedoc: '>=0.23.0' dependencies: handlebars: 4.7.7 - typedoc: 0.23.9_typescript@4.6.3 + typedoc: 0.23.9_typescript@4.7.4 dev: true - /typedoc/0.23.9_typescript@4.6.3: + /typedoc/0.23.9_typescript@4.7.4: resolution: {integrity: sha512-rvWci2KHwteVUufZjjtIy/4PIHiE66t4VW4Ob6pezV//GHZ9Px0CHE5iq032GZzKONJWnNb+EJsrQv32INRvxA==} engines: {node: '>= 14.14'} hasBin: true @@ -8934,17 +8714,17 @@ packages: marked: 4.0.18 minimatch: 5.1.0 shiki: 0.10.1 - typescript: 4.6.3 + typescript: 4.7.4 dev: true - /typescript/4.5.5: - resolution: {integrity: sha512-TCTIul70LyWe6IJWT8QSYeA54WQe8EjQFU4wY52Fasj5UKx88LNYKCgBEHcOMOrFF1rKGbD8v/xcNWVUq9SymA==} + /typescript/4.6.3: + resolution: {integrity: sha512-yNIatDa5iaofVozS/uQJEl3JRWLKKGJKh6Yaiv0GLGSuhpFJe7P3SbHZ8/yjAHRQwKRoA6YZqlfjXWmVzoVSMw==} engines: {node: '>=4.2.0'} hasBin: true dev: true - /typescript/4.6.3: - resolution: {integrity: sha512-yNIatDa5iaofVozS/uQJEl3JRWLKKGJKh6Yaiv0GLGSuhpFJe7P3SbHZ8/yjAHRQwKRoA6YZqlfjXWmVzoVSMw==} + /typescript/4.6.4: + resolution: {integrity: sha512-9ia/jWHIEbo49HfjrLGfKbZSuWo9iTMwXO+Ca3pRsSpbsMbc7/IU8NKdCZVRRBafVPGnoJeFL76ZOAA84I9fEg==} engines: {node: '>=4.2.0'} hasBin: true dev: true @@ -9004,7 +8784,7 @@ packages: /unctx/1.1.4: resolution: {integrity: sha512-fQMML+GjUpIjQa0HBrrJezo2dFpTAbQbU0/KFKw4T5wpc9deGjLHSYthdfNAo2xSWM34csI6arzedezQkqtfGw==} dependencies: - acorn: 8.7.0 + acorn: 8.8.0 estree-walker: 2.0.2 magic-string: 0.26.2 unplugin: 0.6.3 @@ -9017,7 +8797,7 @@ packages: /unctx/1.1.4_xwkqxbepnvmjxhyzf5mpnkifwy: resolution: {integrity: sha512-fQMML+GjUpIjQa0HBrrJezo2dFpTAbQbU0/KFKw4T5wpc9deGjLHSYthdfNAo2xSWM34csI6arzedezQkqtfGw==} dependencies: - acorn: 8.7.0 + acorn: 8.8.0 estree-walker: 2.0.2 magic-string: 0.26.2 unplugin: 0.6.3_xwkqxbepnvmjxhyzf5mpnkifwy @@ -9048,7 +8828,7 @@ packages: '@rollup/pluginutils': 4.2.1 escape-string-regexp: 5.0.0 globby: 13.1.2 - local-pkg: 0.4.1 + local-pkg: 0.4.2 magic-string: 0.26.2 mlly: 0.5.4 pathe: 0.3.2 @@ -9079,20 +8859,40 @@ packages: - rollup - vite - webpack + dev: true - /unimport/0.2.10_xwkqxbepnvmjxhyzf5mpnkifwy: - resolution: {integrity: sha512-HoQ0ZDzHJboRYJ4/YxtMAATxiya/s5C2UE6jLFNj1e0D6Qfq6Pw2P40L+ALCkjLwLhR8l2VROE7kba/AaFtdQg==} + /unimport/0.4.7: + resolution: {integrity: sha512-V2Pbscd1VSdgWm1/OI2pjtydEOTjE7DDnHZKhpOq7bSUBc1i8+1f6PK8jI1lJ1plRDcSNr0DLtAmtU9NPkFQpw==} dependencies: '@rollup/pluginutils': 4.2.1 escape-string-regexp: 5.0.0 fast-glob: 3.2.11 - local-pkg: 0.4.1 + local-pkg: 0.4.2 magic-string: 0.26.2 - mlly: 0.5.4 + mlly: 0.5.5 pathe: 0.3.2 scule: 0.2.1 strip-literal: 0.4.0 - unplugin: 0.7.1_xwkqxbepnvmjxhyzf5mpnkifwy + unplugin: 0.7.2 + transitivePeerDependencies: + - esbuild + - rollup + - vite + - webpack + + /unimport/0.4.7_xwkqxbepnvmjxhyzf5mpnkifwy: + resolution: {integrity: sha512-V2Pbscd1VSdgWm1/OI2pjtydEOTjE7DDnHZKhpOq7bSUBc1i8+1f6PK8jI1lJ1plRDcSNr0DLtAmtU9NPkFQpw==} + dependencies: + '@rollup/pluginutils': 4.2.1 + escape-string-regexp: 5.0.0 + fast-glob: 3.2.11 + local-pkg: 0.4.2 + magic-string: 0.26.2 + mlly: 0.5.5 + pathe: 0.3.2 + scule: 0.2.1 + strip-literal: 0.4.0 + unplugin: 0.7.2_xwkqxbepnvmjxhyzf5mpnkifwy transitivePeerDependencies: - esbuild - rollup @@ -9100,19 +8900,19 @@ packages: - webpack dev: true - /unimport/0.4.4_zqo64ogfzzycugxswskc4gmbhu: - resolution: {integrity: sha512-gYWGl4LUIasAbV7PXCaByuB6NcerrHRIRICooXtAFI7JCGY74CYGVq080P/yg7C4AYs+RYuJQdYsaRAJvG7bsQ==} + /unimport/0.4.7_zqo64ogfzzycugxswskc4gmbhu: + resolution: {integrity: sha512-V2Pbscd1VSdgWm1/OI2pjtydEOTjE7DDnHZKhpOq7bSUBc1i8+1f6PK8jI1lJ1plRDcSNr0DLtAmtU9NPkFQpw==} dependencies: '@rollup/pluginutils': 4.2.1 escape-string-regexp: 5.0.0 fast-glob: 3.2.11 - local-pkg: 0.4.1 + local-pkg: 0.4.2 magic-string: 0.26.2 - mlly: 0.5.4 + mlly: 0.5.5 pathe: 0.3.2 scule: 0.2.1 strip-literal: 0.4.0 - unplugin: 0.7.1_zqo64ogfzzycugxswskc4gmbhu + unplugin: 0.7.2_zqo64ogfzzycugxswskc4gmbhu transitivePeerDependencies: - esbuild - rollup @@ -9197,6 +8997,7 @@ packages: chokidar: 3.5.3 webpack-sources: 3.2.3 webpack-virtual-modules: 0.4.4 + dev: true /unplugin/0.7.1_xwkqxbepnvmjxhyzf5mpnkifwy: resolution: {integrity: sha512-Z6hNDXDNh9aimMkPU1mEjtk+2ova8gh0y7rJeJdGH1vWZOHwF2lLQiQ/R97rv9ymmzEQXsR2fyMet72T8jy6ew==} @@ -9224,8 +9025,8 @@ packages: webpack-virtual-modules: 0.4.4 dev: true - /unplugin/0.7.1_zqo64ogfzzycugxswskc4gmbhu: - resolution: {integrity: sha512-Z6hNDXDNh9aimMkPU1mEjtk+2ova8gh0y7rJeJdGH1vWZOHwF2lLQiQ/R97rv9ymmzEQXsR2fyMet72T8jy6ew==} + /unplugin/0.7.2: + resolution: {integrity: sha512-m7thX4jP8l5sETpLdUASoDOGOcHaOVtgNyrYlToyQUvILUtEzEnngRBrHnAX3IKqooJVmXpoa/CwQ/QqzvGaHQ==} peerDependencies: esbuild: '>=0.13' rollup: ^2.50.0 @@ -9241,7 +9042,55 @@ packages: webpack: optional: true dependencies: - acorn: 8.7.1 + acorn: 8.8.0 + chokidar: 3.5.3 + webpack-sources: 3.2.3 + webpack-virtual-modules: 0.4.4 + + /unplugin/0.7.2_xwkqxbepnvmjxhyzf5mpnkifwy: + resolution: {integrity: sha512-m7thX4jP8l5sETpLdUASoDOGOcHaOVtgNyrYlToyQUvILUtEzEnngRBrHnAX3IKqooJVmXpoa/CwQ/QqzvGaHQ==} + peerDependencies: + esbuild: '>=0.13' + rollup: ^2.50.0 + vite: ^2.3.0 || ^3.0.0-0 + webpack: 4 || 5 + peerDependenciesMeta: + esbuild: + optional: true + rollup: + optional: true + vite: + optional: true + webpack: + optional: true + dependencies: + acorn: 8.8.0 + chokidar: 3.5.3 + esbuild: 0.14.48 + rollup: 2.75.7 + vite: 2.9.14 + webpack-sources: 3.2.3 + webpack-virtual-modules: 0.4.4 + dev: true + + /unplugin/0.7.2_zqo64ogfzzycugxswskc4gmbhu: + resolution: {integrity: sha512-m7thX4jP8l5sETpLdUASoDOGOcHaOVtgNyrYlToyQUvILUtEzEnngRBrHnAX3IKqooJVmXpoa/CwQ/QqzvGaHQ==} + peerDependencies: + esbuild: '>=0.13' + rollup: ^2.50.0 + vite: ^2.3.0 || ^3.0.0-0 + webpack: 4 || 5 + peerDependenciesMeta: + esbuild: + optional: true + rollup: + optional: true + vite: + optional: true + webpack: + optional: true + dependencies: + acorn: 8.8.0 chokidar: 3.5.3 esbuild: 0.14.48 rollup: 2.75.7 @@ -9275,9 +9124,9 @@ packages: /untyped/0.4.4: resolution: {integrity: sha512-sY6u8RedwfLfBis0copfU/fzROieyAndqPs8Kn2PfyzTjtA88vCk81J1b5z+8/VJc+cwfGy23/AqOCpvAbkNVw==} dependencies: - '@babel/core': 7.18.5 - '@babel/standalone': 7.18.8 - '@babel/types': 7.18.4 + '@babel/core': 7.18.9 + '@babel/standalone': 7.18.9 + '@babel/types': 7.18.9 scule: 0.2.1 transitivePeerDependencies: - supports-color @@ -9296,7 +9145,6 @@ packages: browserslist: 4.21.2 escalade: 3.1.1 picocolors: 1.0.0 - dev: true /uri-js/4.4.1: resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} @@ -9401,6 +9249,7 @@ packages: rollup: 2.70.1 optionalDependencies: fsevents: 2.3.2 + dev: false /vite/2.9.14: resolution: {integrity: sha512-P/UCjSpSMcE54r4mPak55hWAZPlyfS369svib/gpmz8/01L822lMPOJ/RYW6tLCe1RPvMvOsJ17erf55bKp4Hw==} @@ -9426,6 +9275,33 @@ packages: fsevents: 2.3.2 dev: true + /vite/3.0.3: + resolution: {integrity: sha512-sDIpIcl3mv1NUaSzZwiXGEy1ZoWwwC2vkxUHY6yiDacR6zf//ZFuBJrozO62gedpE43pmxnLATNR5IYUdAEkMQ==} + engines: {node: ^14.18.0 || >=16.0.0} + hasBin: true + peerDependencies: + less: '*' + sass: '*' + stylus: '*' + terser: ^5.4.0 + peerDependenciesMeta: + less: + optional: true + sass: + optional: true + stylus: + optional: true + terser: + optional: true + dependencies: + esbuild: 0.14.50 + postcss: 8.4.14 + resolve: 1.22.1 + rollup: 2.77.0 + optionalDependencies: + fsevents: 2.3.2 + dev: true + /vitepress/0.22.3: resolution: {integrity: sha512-Yfvu/rent2vp/TXIDZMutS6ft2TJPn4xngS48PYFWDEbuFI2ccUAXM481lF1qVVnCKxfh4g8e/KPvevSJdg1Bw==} engines: {node: '>=14.0.0'} @@ -9501,19 +9377,6 @@ packages: bundle-runner: 0.0.1 dev: true - /vue-demi/0.12.5: - resolution: {integrity: sha512-BREuTgTYlUr0zw0EZn3hnhC3I6gPWv+Kwh4MCih6QcAeaTlaIX0DwOVN0wHej7hSvDPecz4jygy/idsgKfW58Q==} - engines: {node: '>=12'} - hasBin: true - requiresBuild: true - peerDependencies: - '@vue/composition-api': ^1.0.0-rc.1 - vue: ^3.0.0-0 || ^2.6.0 - peerDependenciesMeta: - '@vue/composition-api': - optional: true - dev: false - /vue-demi/0.13.5: resolution: {integrity: sha512-tO3K2bML3AwiHmVHeKCq6HLef2st4zBXIV5aEkoJl6HZ+gJWxWv2O8wLH8qrA3SX3lDoTDHNghLX1xZg83MXvw==} engines: {node: '>=12'} @@ -9556,7 +9419,7 @@ packages: '@vue/devtools-api': 6.2.1 dev: false - /vue-tsc/0.39.0_typescript@4.6.3: + /vue-tsc/0.39.0_typescript@4.7.4: resolution: {integrity: sha512-Hjm1C8T4ooNb5UBUqe0h7uCvV7Ff5UlWG4YgATVYREodafA4WxZIjE8v8wUG8mtyBDSaXXmg0J592i4jo3olug==} hasBin: true peerDependencies: @@ -9564,7 +9427,7 @@ packages: dependencies: '@volar/vue-language-core': 0.39.0 '@volar/vue-typescript': 0.39.0 - typescript: 4.6.3 + typescript: 4.7.4 dev: true /vue/3.2.31: @@ -9794,6 +9657,11 @@ packages: engines: {node: '>= 6'} dev: true + /yaml/2.1.1: + resolution: {integrity: sha512-o96x3OPo8GjWeSLF+wOAbrPfhFOGY0W00GNaxCDv+9hkcDJEnev1yh8S7pgHF0ik6zc8sQLuL8hjHjJULZp8bw==} + engines: {node: '>= 14'} + dev: true + /yargs-parser/20.2.9: resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} engines: {node: '>=10'} @@ -9846,8 +9714,8 @@ packages: strip-indent: 2.0.0 dev: true - /z-schema/5.0.2: - resolution: {integrity: sha512-40TH47ukMHq5HrzkeVE40Ad7eIDKaRV2b+Qpi2prLc9X9eFJFzV7tMe5aH12e6avaSS/u5l653EQOv+J9PirPw==} + /z-schema/5.0.3: + resolution: {integrity: sha512-sGvEcBOTNum68x9jCpCVGPFJ6mWnkD0YxOcddDlJHRx3tKdB2q8pCHExMVZo/AV/6geuVJXG7hljDaWG8+5GDw==} engines: {node: '>=8.0.0'} hasBin: true dependencies: