diff --git a/.github/workflows/docs-deploy.yml b/.github/workflows/docs-deploy.yml index b7e91e2..ea6b863 100644 --- a/.github/workflows/docs-deploy.yml +++ b/.github/workflows/docs-deploy.yml @@ -23,8 +23,8 @@ jobs: run: yarn ci - name: Coding standard check run: yarn lint:prod - # - name: Types integrity check - # run: yarn check:types + - name: Types integrity check + run: yarn check:types - name: Source code build run: yarn build:docs - name: Artifact upload diff --git a/.github/workflows/template-build-core.yml b/.github/workflows/template-build-core.yml index 95a3215..1a9dbd8 100644 --- a/.github/workflows/template-build-core.yml +++ b/.github/workflows/template-build-core.yml @@ -18,8 +18,8 @@ jobs: run: yarn ci - name: Coding standard check run: yarn lint:prod - # - name: Types integrity check - # run: yarn check:types + - name: Types integrity check + run: yarn check:types - name: Source code build run: yarn build:core - name: Artifact creation diff --git a/docs/.vitepress/config.js b/docs/.vitepress/config.js index a440bea..42be120 100644 --- a/docs/.vitepress/config.js +++ b/docs/.vitepress/config.js @@ -15,7 +15,7 @@ export default defineConfig({ { text: "Guide", link: "/guide/" }, { text: "Configs", link: "/config/" }, { - text: "1.0.1", + text: "1.0.2", items: [{ text: "Releases", link: `${REPO_HOME}/releases` }] } ], diff --git a/package.json b/package.json index 580f422..0204d3f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@byloth/vuert", - "version": "1.0.1", + "version": "1.0.2", "description": "The headless alerts, notifications & popups library for Vue.js craftsmen. ℹ", "keywords": [ "Alert", @@ -54,28 +54,28 @@ "build:docs": "vitepress build docs", "preview": "vitepress serve docs", "check:types": "vue-tsc", - "lint": "eslint --ext .js,.json,.ts,.vue --ignore-path .gitignore .", + "lint": "eslint --ext .cjs,.js,.json,.ts,.vue --ignore-path .gitignore .", "lint:prod": "export NODE_ENV=\"production\" && yarn lint", "ci": "yarn install --frozen-lockfile" }, "dependencies": { - "@byloth/exceptions": "^2.0.2", + "@byloth/exceptions": "^2.0.3", "vue": "^3.3.4" }, "devDependencies": { "@byloth/eslint-config-typescript": "^2.5.2", "@byloth/eslint-config-vue": "^2.5.2", "@fortawesome/fontawesome-free": "^6.4.0", - "@typescript-eslint/eslint-plugin": "^5.59.7", - "@typescript-eslint/parser": "^5.59.7", + "@typescript-eslint/eslint-plugin": "^5.59.9", + "@typescript-eslint/parser": "^5.59.9", "@vitejs/plugin-vue": "^4.2.3", - "eslint": "^8.41.0", + "eslint": "^8.42.0", "eslint-plugin-import": "^2.27.5", - "eslint-plugin-vue": "^9.14.0", - "sass": "^1.62.1", - "typescript": "^5.0.4", - "vite": "^4.3.8", - "vitepress": "^1.0.0-beta.1", + "eslint-plugin-vue": "^9.14.1", + "sass": "^1.63.3", + "typescript": "^5.1.3", + "vite": "^4.3.9", + "vitepress": "^1.0.0-beta.2", "vue-eslint-parser": "^9.3.0", "vue-tsc": "^1.6.5" } diff --git a/src/components/AlertHandler.vue b/src/components/AlertHandler.vue index 05de9d4..215d2b4 100644 --- a/src/components/AlertHandler.vue +++ b/src/components/AlertHandler.vue @@ -56,10 +56,10 @@ }); const emit = defineEmits({ - opening: (alert: Alert) => alert instanceof Alert, - opened: (alert: Alert) => alert instanceof Alert, - closing: (alert: Alert) => alert instanceof Alert, - closed: (alert: Alert) => alert instanceof Alert + opening: (alert: Alert) => (alert instanceof Alert), + opened: (alert: Alert) => (alert instanceof Alert), + closing: (alert: Alert) => (alert instanceof Alert), + closed: (alert: Alert) => (alert instanceof Alert) }); const contexts: Context[] = []; diff --git a/src/exceptions.ts b/src/exceptions.ts deleted file mode 100644 index a805ef2..0000000 --- a/src/exceptions.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { Exception, HandledException } from "@byloth/exceptions"; - -import type { AlertOptions } from "./index.js"; - -export class AlertInterrupt extends HandledException -{ - protected _options: AlertOptions; - public get options(): AlertOptions - { - return { ...this._options }; - } - - public constructor(cause: Exception, options: AlertOptions, message?: string, name = "AlertInterrupt") - { - if (message === undefined) - { - message = "The original exception has already been handled while an alert was emitted."; - } - - super(cause, message, name); - - this._options = options; - } -} diff --git a/src/functions.ts b/src/functions.ts index 32d2201..78de416 100644 --- a/src/functions.ts +++ b/src/functions.ts @@ -1,10 +1,9 @@ -import { inject } from "vue"; +import { inject, getCurrentScope } from "vue"; import type { App, ComponentPublicInstance, Plugin } from "vue"; -import { RuntimeException } from "@byloth/exceptions"; +import { handle, RuntimeException } from "@byloth/exceptions"; import { InjectionKeys } from "./core.js"; -import { handle } from "./helpers.js"; import Vuert from "./vuert.js"; import type { VuertOptions } from "./vuert.js"; @@ -23,6 +22,19 @@ interface DisabledErrorsHandling type ErrorsHandling = EnabledErrorsHandling | DisabledErrorsHandling; +let _activeVuert: Vuert | undefined = undefined; + +const _setActiveVuert = (vuert: Vuert): void => { _activeVuert = vuert; }; +const _getActiveVuert = (): Vuert | undefined => +{ + if (getCurrentScope()) + { + return inject(InjectionKeys.$vuert); + } + + return _activeVuert; +}; + export type PluginOptions = Partial & ErrorsHandling; export const createVuert = (options?: PluginOptions): Plugin => { @@ -31,6 +43,8 @@ export const createVuert = (options?: PluginOptions): Plugin => { const $vuert = new Vuert(options); + _setActiveVuert($vuert); + config.globalProperties.$vuert = $vuert; provide(InjectionKeys.$vuert, $vuert); @@ -38,7 +52,7 @@ export const createVuert = (options?: PluginOptions): Plugin => { config.errorHandler = (error: unknown, instance: ComponentPublicInstance | null, info: string) => { - handle($vuert, error, (exc) => + handle(error, (exc) => { // eslint-disable-next-line no-console console.error(exc); @@ -49,7 +63,7 @@ export const createVuert = (options?: PluginOptions): Plugin => window.addEventListener("unhandledrejection", ({ reason }: PromiseRejectionEvent) => { - handle($vuert, reason, () => $vuert.emit(options.defaultAlertOptions)); + handle(reason, () => $vuert.emit(options.defaultAlertOptions)); }); } } @@ -57,11 +71,11 @@ export const createVuert = (options?: PluginOptions): Plugin => }; export const useVuert = (): Vuert => { - const $vuert = inject(InjectionKeys.$vuert); + const $vuert = _getActiveVuert(); if (!$vuert) { throw new RuntimeException( - "`useVuert` was called with no active instance. " + + "`useVuert()` was called but there was not active Vuert. " + "Did you forget to install `Vuert` plugin in your App?" ); } diff --git a/src/helpers.ts b/src/helpers.ts deleted file mode 100644 index de3e0ed..0000000 --- a/src/helpers.ts +++ /dev/null @@ -1,27 +0,0 @@ -import { HandlerBuilder } from "@byloth/exceptions"; -import type { ErrorHandler, HandlerOptions } from "@byloth/exceptions"; - -import { AlertInterrupt } from "./exceptions.js"; - -import type Vuert from "./vuert.js"; -import type { Awaitable } from "./types/index.js"; - -export function handle - ($vuert: Vuert, error: E, handler?: ErrorHandler , options?: Partial): Awaitable -{ - const builder = new HandlerBuilder(options) - .on(AlertInterrupt, (exc) => - { - console.warn(exc); - - return $vuert.emit(exc.options); - }); - - if (handler) - { - return builder.default(handler as ErrorHandler) - .handle(error); - } - - return builder.handle(error); -} diff --git a/src/index.ts b/src/index.ts index 68ef077..63cb59b 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,9 +1,7 @@ import AlertHandler from "./components/AlertHandler.vue"; import Vuert from "./vuert.js"; -export { AlertInterrupt } from "./exceptions.js"; export { createVuert, useVuert } from "./functions.js"; -export { handle } from "./helpers.js"; export { Action, Alert, Context } from "./models/index.js"; export type { VuertOptions } from "./vuert.js"; diff --git a/src/types/vue.d.ts b/src/types/vue.d.ts new file mode 100644 index 0000000..cb8e51f --- /dev/null +++ b/src/types/vue.d.ts @@ -0,0 +1,9 @@ +declare module "*.vue" +{ + import type { DefineComponent } from "vue"; + + // eslint-disable-next-line @typescript-eslint/ban-types + const Component: DefineComponent<{ }, { }, any>; + + export default Component; +} diff --git a/src/vuert.ts b/src/vuert.ts index 12e507a..d808c03 100644 --- a/src/vuert.ts +++ b/src/vuert.ts @@ -13,7 +13,7 @@ export interface VuertOptions export default class Vuert { - public static readonly VERSION: string = "1.0.1"; + public static readonly VERSION: string = "1.0.2"; public static get DEFAULT_OPTS(): VuertOptions { diff --git a/tsconfig.json b/tsconfig.json index 24e5e86..9cae4ad 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -46,5 +46,9 @@ "src/**/*", "src/**/*.json", "src/**/*.vue" + ], + "exclude": [ + "dist", + "node_modules" ] } diff --git a/yarn.lock b/yarn.lock index ce88ea4..faf7fe9 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,133 +2,141 @@ # yarn lockfile v1 -"@algolia/autocomplete-core@1.8.2": - version "1.8.2" - resolved "https://registry.yarnpkg.com/@algolia/autocomplete-core/-/autocomplete-core-1.8.2.tgz#8d758c8652742e2761450d2b615a841fca24e10e" - integrity sha512-mTeshsyFhAqw/ebqNsQpMtbnjr+qVOSKXArEj4K0d7sqc8It1XD0gkASwecm9mF/jlOQ4Z9RNg1HbdA8JPdRwQ== - dependencies: - "@algolia/autocomplete-shared" "1.8.2" +"@algolia/autocomplete-core@1.9.2": + version "1.9.2" + resolved "https://registry.yarnpkg.com/@algolia/autocomplete-core/-/autocomplete-core-1.9.2.tgz#1c9ffcfac7fc4733fe97356247b25d9d7a83538c" + integrity sha512-hkG80c9kx9ClVAEcUJbTd2ziVC713x9Bji9Ty4XJfKXlxlsx3iXsoNhAwfeR4ulzIUg7OE5gez0UU1zVDdG7kg== + dependencies: + "@algolia/autocomplete-plugin-algolia-insights" "1.9.2" + "@algolia/autocomplete-shared" "1.9.2" + +"@algolia/autocomplete-plugin-algolia-insights@1.9.2": + version "1.9.2" + resolved "https://registry.yarnpkg.com/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.9.2.tgz#b4672d5662acc2d0a0547d14dfbdcc70c17625de" + integrity sha512-2LVsf4W66hVHQ3Ua/8k15oPlxjELCztbAkQm/hP42Sw+GLkHAdY1vaVRYziaWq64+Oljfg6FKkZHCdgXH+CGIA== + dependencies: + "@algolia/autocomplete-shared" "1.9.2" -"@algolia/autocomplete-preset-algolia@1.8.2": - version "1.8.2" - resolved "https://registry.yarnpkg.com/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.8.2.tgz#706e87f94c5f198c0e90502b97af09adeeddcc79" - integrity sha512-J0oTx4me6ZM9kIKPuL3lyU3aB8DEvpVvR6xWmHVROx5rOYJGQcZsdG4ozxwcOyiiu3qxMkIbzntnV1S1VWD8yA== - dependencies: - "@algolia/autocomplete-shared" "1.8.2" +"@algolia/autocomplete-preset-algolia@1.9.2": + version "1.9.2" + resolved "https://registry.yarnpkg.com/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.9.2.tgz#a31fc9a88800ee7312cd177c738e9e4c0e0f78e8" + integrity sha512-pqgIm2GNqtCT59Y1ICctIPrYTi34+wNPiNWEclD/yDzp5uDUUsyGe5XrUjCNyQRTKonAlmYxoaEHOn8FWgmBHA== + dependencies: + "@algolia/autocomplete-shared" "1.9.2" -"@algolia/autocomplete-shared@1.8.2": - version "1.8.2" - resolved "https://registry.yarnpkg.com/@algolia/autocomplete-shared/-/autocomplete-shared-1.8.2.tgz#e6972df5c6935a241f16e4909aa82902338e029d" - integrity sha512-b6Z/X4MczChMcfhk6kfRmBzPgjoPzuS9KGR4AFsiLulLNRAAqhP+xZTKtMnZGhLuc61I20d5WqlId02AZvcO6g== +"@algolia/autocomplete-shared@1.9.2": + version "1.9.2" + resolved "https://registry.yarnpkg.com/@algolia/autocomplete-shared/-/autocomplete-shared-1.9.2.tgz#b5b909377439c45774cfb91947ad8e6ebd4652c1" + integrity sha512-XxX6YDn+7LG+SmdpXEOnj7fc3TjiVpQ0CbGhjLwrd2tYr6LVY2D4Iiu/iuYJ4shvVDWWnpwArSk0uIWC/8OPUA== -"@algolia/cache-browser-local-storage@4.17.1": - version "4.17.1" - resolved "https://registry.yarnpkg.com/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.17.1.tgz#b2f204a436893b4856165670ec4dda12cdc055b8" - integrity sha512-e91Jpu93X3t3mVdQwF3ZDjSFMFIfzSc+I76G4EX8nl9RYXgqcjframoL05VTjcD2YCsI18RIHAWVCBoCXVZnrw== +"@algolia/cache-browser-local-storage@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.17.2.tgz#b83c52789284252858de20b532861d6fb0f128ab" + integrity sha512-ZkVN7K/JE+qMQbpR6h3gQOGR6yCJpmucSBCmH5YDxnrYbp2CbrVCu0Nr+FGVoWzMJNznj1waShkfQ9awERulLw== dependencies: - "@algolia/cache-common" "4.17.1" + "@algolia/cache-common" "4.17.2" -"@algolia/cache-common@4.17.1": - version "4.17.1" - resolved "https://registry.yarnpkg.com/@algolia/cache-common/-/cache-common-4.17.1.tgz#f4877f6fdc594a29ce6d032fae96f0517bf80b1d" - integrity sha512-fvi1WT8aSiGAKrcTw8Qg3RYgcwW8GZMHcqEm4AyDBEy72JZlFBSY80cTQ75MslINjCHXLDT+9EN8AGI9WVY7uA== +"@algolia/cache-common@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@algolia/cache-common/-/cache-common-4.17.2.tgz#025169005e52b2e1e929871d1f5cdd42a7f80e53" + integrity sha512-fojbhYIS8ovfYs6hwZpy1O4mBfVRxNgAaZRqsdVQd54hU4MxYDYFCxagYX28lOBz7btcDHld6BMoWXvjzkx6iQ== -"@algolia/cache-in-memory@4.17.1": - version "4.17.1" - resolved "https://registry.yarnpkg.com/@algolia/cache-in-memory/-/cache-in-memory-4.17.1.tgz#7b3ab5f6de897677d92db549f8228966c62966d5" - integrity sha512-NbBt6eBWlsXc5geSpfPRC5dkIB/0Ptthw8r0yM5Z7D3sPlYdnTZSO9y9XWXIptRMwmZe4cM8iBMN8y0tzbcBkA== +"@algolia/cache-in-memory@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@algolia/cache-in-memory/-/cache-in-memory-4.17.2.tgz#3bb22e0be9073b88d1598c255a87ff7fc494ab1b" + integrity sha512-UYQcMzPurNi+cPYkuPemTZkjKAjdgAS1hagC5irujKbrYnN4yscK4TkOI5tX+O8/KegtJt3kOK07OIrJ2QDAAw== dependencies: - "@algolia/cache-common" "4.17.1" + "@algolia/cache-common" "4.17.2" -"@algolia/client-account@4.17.1": - version "4.17.1" - resolved "https://registry.yarnpkg.com/@algolia/client-account/-/client-account-4.17.1.tgz#81747c0828d2688af4a98bbed3d3b0aa7daa25f6" - integrity sha512-3rL/6ofJvyL+q8TiWM3qoM9tig+SY4gB1Vbsj+UeJPnJm8Khm+7OS+r+mFraqR6pTehYqN8yGYoE7x4diEn4aA== +"@algolia/client-account@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@algolia/client-account/-/client-account-4.17.2.tgz#7e0a824f7c3cbb03b5dc3261ddeed330d7d9be4a" + integrity sha512-doSk89pBPDpDyKJSHFADIGa2XSGrBCj3QwPvqtRJXDADpN+OjW+eTR8r4hEs/7X4GGfjfAOAES8JgDx+fZntYw== dependencies: - "@algolia/client-common" "4.17.1" - "@algolia/client-search" "4.17.1" - "@algolia/transporter" "4.17.1" + "@algolia/client-common" "4.17.2" + "@algolia/client-search" "4.17.2" + "@algolia/transporter" "4.17.2" -"@algolia/client-analytics@4.17.1": - version "4.17.1" - resolved "https://registry.yarnpkg.com/@algolia/client-analytics/-/client-analytics-4.17.1.tgz#d6ecc75fd792fb1dee67c01497098ce175f1c4c9" - integrity sha512-Bepr2w249vODqeBtM7i++tPmUsQ9B81aupUGbDWmjA/FX+jzQqOdhW8w1CFO5kWViNKTbz2WBIJ9U3x8hOa4bA== +"@algolia/client-analytics@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@algolia/client-analytics/-/client-analytics-4.17.2.tgz#fedb972d0a230dc2b0c0c1d09f1a3bcd6ea75f91" + integrity sha512-V+DcXbOtD/hKwAR3qGQrtlrJ3q2f9OKfx843q744o4m3xHv5ueCAvGXB1znPsdaUrVDNAImcgEgqwI9x7EJbDw== dependencies: - "@algolia/client-common" "4.17.1" - "@algolia/client-search" "4.17.1" - "@algolia/requester-common" "4.17.1" - "@algolia/transporter" "4.17.1" + "@algolia/client-common" "4.17.2" + "@algolia/client-search" "4.17.2" + "@algolia/requester-common" "4.17.2" + "@algolia/transporter" "4.17.2" -"@algolia/client-common@4.17.1": - version "4.17.1" - resolved "https://registry.yarnpkg.com/@algolia/client-common/-/client-common-4.17.1.tgz#a8b561c1e3a19cce2c24e9a49bd822477c2f56d9" - integrity sha512-+r7kg4EgbFnGsDnoGSVNtXZO8xvZ0vzf1WAOV7sqV9PMf1bp6cpJP/3IuPrSk4t5w2KVl+pC8jfTM7HcFlfBEQ== +"@algolia/client-common@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@algolia/client-common/-/client-common-4.17.2.tgz#411768089df75723d5342c45d97e73e068a5749d" + integrity sha512-gKBUnjxi0ukJYIJxVREYGt1Dmj1B3RBYbfGWi0dIPp1BC1VvQm+BOuNwsIwmq/x3MPO+sGuK978eKiP3tZDvag== dependencies: - "@algolia/requester-common" "4.17.1" - "@algolia/transporter" "4.17.1" + "@algolia/requester-common" "4.17.2" + "@algolia/transporter" "4.17.2" -"@algolia/client-personalization@4.17.1": - version "4.17.1" - resolved "https://registry.yarnpkg.com/@algolia/client-personalization/-/client-personalization-4.17.1.tgz#26b2c8e13e9b69afd4e2c17879f538d408b708f3" - integrity sha512-gJku9DG/THJpfsSlG/az0a3QIn+VVff9kKh8PG8+7ZfxOHS+C+Y5YSeZVsC+c2cfoKLPo3CuHIiJ/p86erR3bA== +"@algolia/client-personalization@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@algolia/client-personalization/-/client-personalization-4.17.2.tgz#83e407e57a54a597243196343e97ddcda09bfe26" + integrity sha512-wc4UgOWxSYWz5wpuelNmlt895jA9twjZWM2ms17Ws8qCvBHF7OVGdMGgbysPB8790YnfvvDnSsWOv3CEj26Eow== dependencies: - "@algolia/client-common" "4.17.1" - "@algolia/requester-common" "4.17.1" - "@algolia/transporter" "4.17.1" + "@algolia/client-common" "4.17.2" + "@algolia/requester-common" "4.17.2" + "@algolia/transporter" "4.17.2" -"@algolia/client-search@4.17.1": - version "4.17.1" - resolved "https://registry.yarnpkg.com/@algolia/client-search/-/client-search-4.17.1.tgz#defaf56083e613fb593a9a49837b6aa551ed38eb" - integrity sha512-Q5YfT5gVkx60PZDQBqp/zH9aUbBdC7HVvxupiHUgnCKqRQsRZjOhLest7AI6FahepuZLBZS62COrO7v+JvKY7w== +"@algolia/client-search@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@algolia/client-search/-/client-search-4.17.2.tgz#beaef04daf8e04f171f61500ea5083a2c628161f" + integrity sha512-FUjIs+gRe0upJC++uVs4sdxMw15JxfkT86Gr/kqVwi9kcqaZhXntSbW/Fw959bIYXczjmeVQsilYvBWW4YvSZA== dependencies: - "@algolia/client-common" "4.17.1" - "@algolia/requester-common" "4.17.1" - "@algolia/transporter" "4.17.1" + "@algolia/client-common" "4.17.2" + "@algolia/requester-common" "4.17.2" + "@algolia/transporter" "4.17.2" -"@algolia/logger-common@4.17.1": - version "4.17.1" - resolved "https://registry.yarnpkg.com/@algolia/logger-common/-/logger-common-4.17.1.tgz#fe50f67a86276cebdfd8337bc5d925f7a3bf9e43" - integrity sha512-Us28Ot+fLEmX9M96sa65VZ8EyEEzhYPxfhV9aQyKDjfXbUdJlJxKt6wZpoEg9RAPSdO8IjK9nmuW2P8au3rRsg== +"@algolia/logger-common@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@algolia/logger-common/-/logger-common-4.17.2.tgz#d41a902701e74b7a945448a507ffae3f7ab805dd" + integrity sha512-EfXuweUE+1HiSMsQidaDWA5Lv4NnStYIlh7PO5pLkI+sdhbMX0e5AO5nUAMIFM1VkEANes70RA8fzhP6OqCqQQ== -"@algolia/logger-console@4.17.1": - version "4.17.1" - resolved "https://registry.yarnpkg.com/@algolia/logger-console/-/logger-console-4.17.1.tgz#d9d6dc0bb6ad1321b66163491cc4618d27beb73d" - integrity sha512-iKGQTpOjHiE64W3JIOu6dmDvn+AfYIElI9jf/Nt6umRPmP/JI9rK+OHUoW4pKrBtdG0DPd62ppeNXzSnLxY6/g== +"@algolia/logger-console@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@algolia/logger-console/-/logger-console-4.17.2.tgz#d6a71d2bf9717e15869c012ef4439e7b6f623f7e" + integrity sha512-JuG8HGVlJ+l/UEDK4h2Y8q/IEmRjQz1J0aS9tf6GPNbGYiSvMr1DDdZ+hqV3bb1XE6wU8Ypex56HisWMSpnG0A== dependencies: - "@algolia/logger-common" "4.17.1" + "@algolia/logger-common" "4.17.2" -"@algolia/requester-browser-xhr@4.17.1": - version "4.17.1" - resolved "https://registry.yarnpkg.com/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.17.1.tgz#8be50e4196cd9d1ec311970845a42f2aee35860e" - integrity sha512-W5mGfGDsyfVR+r4pUFrYLGBEM18gs38+GNt5PE5uPULy4uVTSnnVSkJkWeRkmLBk9zEZ/Nld8m4zavK6dtEuYg== +"@algolia/requester-browser-xhr@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.17.2.tgz#7153dc2d0a4924d7b214a5f078a2a2c05398ea5d" + integrity sha512-FKI2lYWwksALfRt2OETFmGb5+P7WVc4py2Ai3H7k8FSfTLwVvs9WVVmtlx6oANQ8RFEK4B85h8DQJTJ29TDfmA== dependencies: - "@algolia/requester-common" "4.17.1" + "@algolia/requester-common" "4.17.2" -"@algolia/requester-common@4.17.1": - version "4.17.1" - resolved "https://registry.yarnpkg.com/@algolia/requester-common/-/requester-common-4.17.1.tgz#3b3912c8df1e05f0fd49f4c9a7caa3fe45d2d995" - integrity sha512-HggXdjvVFQR0I5l7hM5WdHgQ1tqcRWeyXZz8apQ7zPWZhirmY2E9D6LVhDh/UnWQNEm7nBtM+eMFONJ3bZccIQ== +"@algolia/requester-common@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@algolia/requester-common/-/requester-common-4.17.2.tgz#8f390808fcc38e4e734e336a6b56e30eb2a5f5bf" + integrity sha512-Rfim23ztAhYpE9qm+KCfCRo+YLJCjiiTG+IpDdzUjMpYPhUtirQT0A35YEd/gKn86YNyydxS9w8iRSjwKh+L0A== -"@algolia/requester-node-http@4.17.1": - version "4.17.1" - resolved "https://registry.yarnpkg.com/@algolia/requester-node-http/-/requester-node-http-4.17.1.tgz#f4eeee985833ad2b51ac9ff757be5c1a786ff80a" - integrity sha512-NzFWecXT6d0PPsQY9L+/qoK2deF74OLcpvqCH+Vh3mh+QzPsFafcBExdguAjZsAWDn1R6JEeFW7/fo/p0SE57w== +"@algolia/requester-node-http@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@algolia/requester-node-http/-/requester-node-http-4.17.2.tgz#895ec16b57b5a5b1d6a07b862d48b97a74769392" + integrity sha512-E0b0kyCDMvUIhQmDNd/mH4fsKJdEEX6PkMKrYJjzm6moo+rP22tqpq4Rfe7DZD8OB6/LsDD3zs3Kvd+L+M5wwQ== dependencies: - "@algolia/requester-common" "4.17.1" + "@algolia/requester-common" "4.17.2" -"@algolia/transporter@4.17.1": - version "4.17.1" - resolved "https://registry.yarnpkg.com/@algolia/transporter/-/transporter-4.17.1.tgz#9508e08e984e110603ec66a19362017c1df59e05" - integrity sha512-ZM+qhX47Vh46mWH8/U9ihvy98HdTYpYQDSlqBD7IbiUbbyoCMke+qmdSX2MGhR2FCcXBSxejsJKKVAfbpaLVgg== +"@algolia/transporter@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@algolia/transporter/-/transporter-4.17.2.tgz#06cd0e58d55a27d10560c1113071719176305af6" + integrity sha512-m8pXlz5OnNzjD1rcw+duCN4jG4yEzkJBsvKYMoN22Oq6rQwy1AY5muZ+IQUs4dL+A364CYkRMLRWhvXpCZ1x+g== dependencies: - "@algolia/cache-common" "4.17.1" - "@algolia/logger-common" "4.17.1" - "@algolia/requester-common" "4.17.1" + "@algolia/cache-common" "4.17.2" + "@algolia/logger-common" "4.17.2" + "@algolia/requester-common" "4.17.2" "@babel/parser@^7.20.15", "@babel/parser@^7.21.3": - version "7.21.9" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.21.9.tgz#ab18ea3b85b4bc33ba98a8d4c2032c557d23cf14" - integrity sha512-q5PNg/Bi1OpGgx5jYlvWZwAorZepEudDMCLtj967aeS7WMont7dUZI46M2XwcIQqvUlMxWfdLFu4S/qSxeUu5g== + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.5.tgz#721fd042f3ce1896238cf1b341c77eb7dee7dbea" + integrity sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q== "@byloth/eslint-config-typescript@^2.5.2": version "2.5.2" @@ -149,32 +157,32 @@ resolved "https://registry.yarnpkg.com/@byloth/eslint-config/-/eslint-config-2.5.2.tgz#46612d5fdac4bb9783e80830120d53f8dd279638" integrity sha512-rk7KQyrzusW3cHfGCR9xALvcUJpRHUONxnlyK+viw3llO0bNCeQ8kmy7YCTDpb96SNZ90hk4IndWvJyfpNjOrw== -"@byloth/exceptions@^2.0.2": - version "2.0.2" - resolved "https://registry.yarnpkg.com/@byloth/exceptions/-/exceptions-2.0.2.tgz#3f0f545ae2cb395b05cf13417eedd05084964bf6" - integrity sha512-n8+9DfiFPdK/JTZyzoqNHhhdneMuAxWwpQm/RaZpgWeZ8ECVvNeq2BlZYrt6YdCmSrZIKzTXZ84nQT++duWblw== +"@byloth/exceptions@^2.0.3": + version "2.0.3" + resolved "https://registry.yarnpkg.com/@byloth/exceptions/-/exceptions-2.0.3.tgz#965dd9e51d692dfde5d50a24604fdb16a57e9dee" + integrity sha512-8sfyfHwmKXIbc3MioJJqhlL+JtA8HXpr5sbzWfkMF/JKA5j0Xyc07kLkyHgrAeE7IycwVTd9cjCsdOfzxtZ/2g== -"@docsearch/css@3.4.0", "@docsearch/css@^3.3.5": - version "3.4.0" - resolved "https://registry.yarnpkg.com/@docsearch/css/-/css-3.4.0.tgz#4d4fc36352b06b512e97412c37c005f07c9a968b" - integrity sha512-Hg8Xfma+rFwRi6Y/pfei4FJoQ1hdVURmmNs/XPoMTCPAImU+d5yxj+M+qdLtNjWRpfWziU4dQcqY94xgFBn2dg== +"@docsearch/css@3.5.0", "@docsearch/css@^3.5.0": + version "3.5.0" + resolved "https://registry.yarnpkg.com/@docsearch/css/-/css-3.5.0.tgz#5f6cb94a7c40122b21621c30a4b2460bd42d7dd0" + integrity sha512-Ob5FQLubplcBNihAVtriR59FRBeP8u69F6mu4L4yIr60KfsPc10bOV0DoPErJw0zF9IBN2cNLW9qdmt8zWPxyg== -"@docsearch/js@^3.3.5": - version "3.4.0" - resolved "https://registry.yarnpkg.com/@docsearch/js/-/js-3.4.0.tgz#aac1048fb80e567f369f5d7fe1f7bd5cd7e81948" - integrity sha512-uOtOHZJv+5PQmL68+srVzlGhLejnEBJgZl1bR87Zh/uK5RUI7p6el1R8hGTl2F8K2tCloNRxTMtXyYUNbMV+qw== +"@docsearch/js@^3.5.0": + version "3.5.0" + resolved "https://registry.yarnpkg.com/@docsearch/js/-/js-3.5.0.tgz#870ba9322e1c917d4c2c27fa7051641379c89817" + integrity sha512-WqB+z+zVKSXDkGq028nClT9RvMzfFlemZuIulX5ZwWkdUtl4k7M9cmZA/c6kuZf7FG24XQsMHWuBjeUo9hLRyA== dependencies: - "@docsearch/react" "3.4.0" + "@docsearch/react" "3.5.0" preact "^10.0.0" -"@docsearch/react@3.4.0": - version "3.4.0" - resolved "https://registry.yarnpkg.com/@docsearch/react/-/react-3.4.0.tgz#12ef4977064f7f8d02ea35706d60e172c101395a" - integrity sha512-ufrp5879XYGojgS30ZAp8H4qIMbahRHB9M85VDBP36Xgz5QjYM54i1URKj5e219F7gqTtOivfztFTij6itc0MQ== +"@docsearch/react@3.5.0": + version "3.5.0" + resolved "https://registry.yarnpkg.com/@docsearch/react/-/react-3.5.0.tgz#2468fa67dea86e4ef2935754a3453e01d850c56f" + integrity sha512-3IG8mmSMzSHNGy2S1VuPyYU9tFCxFpj5Ov8SYwsSHM4yMvFsaO9oFxXocA5lSenliIELhuOuS5+BdxHa/Qlf2A== dependencies: - "@algolia/autocomplete-core" "1.8.2" - "@algolia/autocomplete-preset-algolia" "1.8.2" - "@docsearch/css" "3.4.0" + "@algolia/autocomplete-core" "1.9.2" + "@algolia/autocomplete-preset-algolia" "1.9.2" + "@docsearch/css" "3.5.0" algoliasearch "^4.0.0" "@esbuild/android-arm64@0.17.19": @@ -314,20 +322,20 @@ minimatch "^3.1.2" strip-json-comments "^3.1.1" -"@eslint/js@8.41.0": - version "8.41.0" - resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.41.0.tgz#080321c3b68253522f7646b55b577dd99d2950b3" - integrity sha512-LxcyMGxwmTh2lY9FwHPGWOHmYFCZvbrFCBZL4FzSSsxsRPuhrYUg/49/0KDfW8tnIEaEHtfmn6+NPN+1DqaNmA== +"@eslint/js@8.42.0": + version "8.42.0" + resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.42.0.tgz#484a1d638de2911e6f5a30c12f49c7e4a3270fb6" + integrity sha512-6SWlXpWU5AvId8Ac7zjzmIOqMOba/JWY8XZ4A7q7Gn1Vlfg/SFFIlrtHXt9nPn4op9ZPAkl91Jao+QQv3r/ukw== "@fortawesome/fontawesome-free@^6.4.0": version "6.4.0" resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-free/-/fontawesome-free-6.4.0.tgz#1ee0c174e472c84b23cb46c995154dc383e3b4fe" integrity sha512-0NyytTlPJwB/BF5LtRV8rrABDbe3TdTXqNB3PdZ+UUUZAEIrdOJdmABqKjt4AXwIoJNaRVVZEXxpNrqvE1GAYQ== -"@humanwhocodes/config-array@^0.11.8": - version "0.11.8" - resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.8.tgz#03595ac2075a4dc0f191cc2131de14fbd7d410b9" - integrity sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g== +"@humanwhocodes/config-array@^0.11.10": + version "0.11.10" + resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.10.tgz#5a3ffe32cc9306365fb3fd572596cd602d5e12d2" + integrity sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ== dependencies: "@humanwhocodes/object-schema" "^1.2.1" debug "^4.1.1" @@ -370,9 +378,9 @@ fastq "^1.6.0" "@types/json-schema@^7.0.9": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3" - integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ== + version "7.0.12" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.12.tgz#d70faba7039d5fca54c83c7dbab41051d2b6f6cb" + integrity sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA== "@types/json5@^0.0.29": version "0.0.29" @@ -389,15 +397,15 @@ resolved "https://registry.yarnpkg.com/@types/web-bluetooth/-/web-bluetooth-0.0.17.tgz#5c9f3c617f64a9735d7b72a7cc671e166d900c40" integrity sha512-4p9vcSmxAayx72yn70joFoL44c9MO/0+iVEBIQXe3v2h2SiAsEIo/G5v6ObFWvNKRFjbrVadNf9LqEEZeQPzdA== -"@typescript-eslint/eslint-plugin@^5.59.7": - version "5.59.7" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.7.tgz#e470af414f05ecfdc05a23e9ce6ec8f91db56fe2" - integrity sha512-BL+jYxUFIbuYwy+4fF86k5vdT9lT0CNJ6HtwrIvGh0PhH8s0yy5rjaKH2fDCrz5ITHy07WCzVGNvAmjJh4IJFA== +"@typescript-eslint/eslint-plugin@^5.59.9": + version "5.59.9" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.9.tgz#2604cfaf2b306e120044f901e20c8ed926debf15" + integrity sha512-4uQIBq1ffXd2YvF7MAvehWKW3zVv/w+mSfRAu+8cKbfj3nwzyqJLNcZJpQ/WZ1HLbJDiowwmQ6NO+63nCA+fqA== dependencies: "@eslint-community/regexpp" "^4.4.0" - "@typescript-eslint/scope-manager" "5.59.7" - "@typescript-eslint/type-utils" "5.59.7" - "@typescript-eslint/utils" "5.59.7" + "@typescript-eslint/scope-manager" "5.59.9" + "@typescript-eslint/type-utils" "5.59.9" + "@typescript-eslint/utils" "5.59.9" debug "^4.3.4" grapheme-splitter "^1.0.4" ignore "^5.2.0" @@ -405,72 +413,72 @@ semver "^7.3.7" tsutils "^3.21.0" -"@typescript-eslint/parser@^5.59.7": - version "5.59.7" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.59.7.tgz#02682554d7c1028b89aa44a48bf598db33048caa" - integrity sha512-VhpsIEuq/8i5SF+mPg9jSdIwgMBBp0z9XqjiEay+81PYLJuroN+ET1hM5IhkiYMJd9MkTz8iJLt7aaGAgzWUbQ== +"@typescript-eslint/parser@^5.59.9": + version "5.59.9" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.59.9.tgz#a85c47ccdd7e285697463da15200f9a8561dd5fa" + integrity sha512-FsPkRvBtcLQ/eVK1ivDiNYBjn3TGJdXy2fhXX+rc7czWl4ARwnpArwbihSOHI2Peg9WbtGHrbThfBUkZZGTtvQ== dependencies: - "@typescript-eslint/scope-manager" "5.59.7" - "@typescript-eslint/types" "5.59.7" - "@typescript-eslint/typescript-estree" "5.59.7" + "@typescript-eslint/scope-manager" "5.59.9" + "@typescript-eslint/types" "5.59.9" + "@typescript-eslint/typescript-estree" "5.59.9" debug "^4.3.4" -"@typescript-eslint/scope-manager@5.59.7": - version "5.59.7" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.59.7.tgz#0243f41f9066f3339d2f06d7f72d6c16a16769e2" - integrity sha512-FL6hkYWK9zBGdxT2wWEd2W8ocXMu3K94i3gvMrjXpx+koFYdYV7KprKfirpgY34vTGzEPPuKoERpP8kD5h7vZQ== +"@typescript-eslint/scope-manager@5.59.9": + version "5.59.9" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.59.9.tgz#eadce1f2733389cdb58c49770192c0f95470d2f4" + integrity sha512-8RA+E+w78z1+2dzvK/tGZ2cpGigBZ58VMEHDZtpE1v+LLjzrYGc8mMaTONSxKyEkz3IuXFM0IqYiGHlCsmlZxQ== dependencies: - "@typescript-eslint/types" "5.59.7" - "@typescript-eslint/visitor-keys" "5.59.7" + "@typescript-eslint/types" "5.59.9" + "@typescript-eslint/visitor-keys" "5.59.9" -"@typescript-eslint/type-utils@5.59.7": - version "5.59.7" - resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.59.7.tgz#89c97291371b59eb18a68039857c829776f1426d" - integrity sha512-ozuz/GILuYG7osdY5O5yg0QxXUAEoI4Go3Do5xeu+ERH9PorHBPSdvD3Tjp2NN2bNLh1NJQSsQu2TPu/Ly+HaQ== +"@typescript-eslint/type-utils@5.59.9": + version "5.59.9" + resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.59.9.tgz#53bfaae2e901e6ac637ab0536d1754dfef4dafc2" + integrity sha512-ksEsT0/mEHg9e3qZu98AlSrONAQtrSTljL3ow9CGej8eRo7pe+yaC/mvTjptp23Xo/xIf2mLZKC6KPv4Sji26Q== dependencies: - "@typescript-eslint/typescript-estree" "5.59.7" - "@typescript-eslint/utils" "5.59.7" + "@typescript-eslint/typescript-estree" "5.59.9" + "@typescript-eslint/utils" "5.59.9" debug "^4.3.4" tsutils "^3.21.0" -"@typescript-eslint/types@5.59.7": - version "5.59.7" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.59.7.tgz#6f4857203fceee91d0034ccc30512d2939000742" - integrity sha512-UnVS2MRRg6p7xOSATscWkKjlf/NDKuqo5TdbWck6rIRZbmKpVNTLALzNvcjIfHBE7736kZOFc/4Z3VcZwuOM/A== +"@typescript-eslint/types@5.59.9": + version "5.59.9" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.59.9.tgz#3b4e7ae63718ce1b966e0ae620adc4099a6dcc52" + integrity sha512-uW8H5NRgTVneSVTfiCVffBb8AbwWSKg7qcA4Ot3JI3MPCJGsB4Db4BhvAODIIYE5mNj7Q+VJkK7JxmRhk2Lyjw== -"@typescript-eslint/typescript-estree@5.59.7": - version "5.59.7" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.7.tgz#b887acbd4b58e654829c94860dbff4ac55c5cff8" - integrity sha512-4A1NtZ1I3wMN2UGDkU9HMBL+TIQfbrh4uS0WDMMpf3xMRursDbqEf1ahh6vAAe3mObt8k3ZATnezwG4pdtWuUQ== +"@typescript-eslint/typescript-estree@5.59.9": + version "5.59.9" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.9.tgz#6bfea844e468427b5e72034d33c9fffc9557392b" + integrity sha512-pmM0/VQ7kUhd1QyIxgS+aRvMgw+ZljB3eDb+jYyp6d2bC0mQWLzUDF+DLwCTkQ3tlNyVsvZRXjFyV0LkU/aXjA== dependencies: - "@typescript-eslint/types" "5.59.7" - "@typescript-eslint/visitor-keys" "5.59.7" + "@typescript-eslint/types" "5.59.9" + "@typescript-eslint/visitor-keys" "5.59.9" debug "^4.3.4" globby "^11.1.0" is-glob "^4.0.3" semver "^7.3.7" tsutils "^3.21.0" -"@typescript-eslint/utils@5.59.7": - version "5.59.7" - resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.59.7.tgz#7adf068b136deae54abd9a66ba5a8780d2d0f898" - integrity sha512-yCX9WpdQKaLufz5luG4aJbOpdXf/fjwGMcLFXZVPUz3QqLirG5QcwwnIHNf8cjLjxK4qtzTO8udUtMQSAToQnQ== +"@typescript-eslint/utils@5.59.9": + version "5.59.9" + resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.59.9.tgz#adee890107b5ffe02cd46fdaa6c2125fb3c6c7c4" + integrity sha512-1PuMYsju/38I5Ggblaeb98TOoUvjhRvLpLa1DoTOFaLWqaXl/1iQ1eGurTXgBY58NUdtfTXKP5xBq7q9NDaLKg== dependencies: "@eslint-community/eslint-utils" "^4.2.0" "@types/json-schema" "^7.0.9" "@types/semver" "^7.3.12" - "@typescript-eslint/scope-manager" "5.59.7" - "@typescript-eslint/types" "5.59.7" - "@typescript-eslint/typescript-estree" "5.59.7" + "@typescript-eslint/scope-manager" "5.59.9" + "@typescript-eslint/types" "5.59.9" + "@typescript-eslint/typescript-estree" "5.59.9" eslint-scope "^5.1.1" semver "^7.3.7" -"@typescript-eslint/visitor-keys@5.59.7": - version "5.59.7" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.7.tgz#09c36eaf268086b4fbb5eb9dc5199391b6485fc5" - integrity sha512-tyN+X2jvMslUszIiYbF0ZleP+RqQsFVpGrKI6e0Eet1w8WmhsAtmzaqm8oM8WJQ1ysLwhnsK/4hYHJjOgJVfQQ== +"@typescript-eslint/visitor-keys@5.59.9": + version "5.59.9" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.9.tgz#9f86ef8e95aca30fb5a705bb7430f95fc58b146d" + integrity sha512-bT7s0td97KMaLwpEBckbzj/YohnvXtqbe2XgqNvTl6RJVakY5mvENOTPvw5u66nljfZxthESpDozs86U+oLY8Q== dependencies: - "@typescript-eslint/types" "5.59.7" + "@typescript-eslint/types" "5.59.9" eslint-visitor-keys "^3.3.0" "@vitejs/plugin-vue@^4.2.3": @@ -669,24 +677,24 @@ ajv@^6.10.0, ajv@^6.12.4: uri-js "^4.2.2" algoliasearch@^4.0.0: - version "4.17.1" - resolved "https://registry.yarnpkg.com/algoliasearch/-/algoliasearch-4.17.1.tgz#23926448b815bbf9a921bc6077abc1ce8d3224b2" - integrity sha512-4GDQ1RhP2qUR3x8PevFRbEdqZqIARNViZYjgTJmA1T7wRNtFA3W4Aqc/RsODqa1J8IO/QDla5x4tWuUS8NV8wA== - dependencies: - "@algolia/cache-browser-local-storage" "4.17.1" - "@algolia/cache-common" "4.17.1" - "@algolia/cache-in-memory" "4.17.1" - "@algolia/client-account" "4.17.1" - "@algolia/client-analytics" "4.17.1" - "@algolia/client-common" "4.17.1" - "@algolia/client-personalization" "4.17.1" - "@algolia/client-search" "4.17.1" - "@algolia/logger-common" "4.17.1" - "@algolia/logger-console" "4.17.1" - "@algolia/requester-browser-xhr" "4.17.1" - "@algolia/requester-common" "4.17.1" - "@algolia/requester-node-http" "4.17.1" - "@algolia/transporter" "4.17.1" + version "4.17.2" + resolved "https://registry.yarnpkg.com/algoliasearch/-/algoliasearch-4.17.2.tgz#ca861340e04a78da8dc5f8c5646ee38c3d8b7ec7" + integrity sha512-VFu43JJNYIW74awp7oeQcQsPcxOhd8psqBDTfyNO2Zt6L1NqnNMTVnaIdQ+8dtKqUDBqQZp0szPxECvX8CK2Fg== + dependencies: + "@algolia/cache-browser-local-storage" "4.17.2" + "@algolia/cache-common" "4.17.2" + "@algolia/cache-in-memory" "4.17.2" + "@algolia/client-account" "4.17.2" + "@algolia/client-analytics" "4.17.2" + "@algolia/client-common" "4.17.2" + "@algolia/client-personalization" "4.17.2" + "@algolia/client-search" "4.17.2" + "@algolia/logger-common" "4.17.2" + "@algolia/logger-console" "4.17.2" + "@algolia/requester-browser-xhr" "4.17.2" + "@algolia/requester-common" "4.17.2" + "@algolia/requester-node-http" "4.17.2" + "@algolia/transporter" "4.17.2" ansi-regex@^5.0.1: version "5.0.1" @@ -1069,10 +1077,10 @@ eslint-plugin-import@^2.27.5: semver "^6.3.0" tsconfig-paths "^3.14.1" -eslint-plugin-vue@^9.14.0: - version "9.14.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.14.0.tgz#73004a62d794e276a60d471114d81ed8887efcb8" - integrity sha512-4O7EuiqPGVQA1wYCzLvCzsBTv9JIPHLHhrf0k55DLzbwtmJbSw2TKS0G/l7pOwi9RWMSkjIT7ftChU5gZpgnJw== +eslint-plugin-vue@^9.14.1: + version "9.14.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.14.1.tgz#3b0c9857642dac547c7564031cfb09d283eafdd4" + integrity sha512-LQazDB1qkNEKejLe/b5a9VfEbtbczcOaui5lQ4Qw0tbRBbQYREyxxOV5BQgNDTqGPs9pxqiEpbMi9ywuIaF7vw== dependencies: "@eslint-community/eslint-utils" "^4.3.0" natural-compare "^1.4.0" @@ -1103,16 +1111,16 @@ eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1: resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz#c22c48f48942d08ca824cc526211ae400478a994" integrity sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA== -eslint@^8.41.0: - version "8.41.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.41.0.tgz#3062ca73363b4714b16dbc1e60f035e6134b6f1c" - integrity sha512-WQDQpzGBOP5IrXPo4Hc0814r4/v2rrIsB0rhT7jtunIalgg6gYXWhRMOejVO8yH21T/FGaxjmFjBMNqcIlmH1Q== +eslint@^8.42.0: + version "8.42.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.42.0.tgz#7bebdc3a55f9ed7167251fe7259f75219cade291" + integrity sha512-ulg9Ms6E1WPf67PHaEY4/6E2tEn5/f7FXGzr3t9cBMugOmf1INYvuUwwh1aXQN4MfJ6a5K2iNwP3w4AColvI9A== dependencies: "@eslint-community/eslint-utils" "^4.2.0" "@eslint-community/regexpp" "^4.4.0" "@eslint/eslintrc" "^2.0.3" - "@eslint/js" "8.41.0" - "@humanwhocodes/config-array" "^0.11.8" + "@eslint/js" "8.42.0" + "@humanwhocodes/config-array" "^0.11.10" "@humanwhocodes/module-importer" "^1.0.1" "@nodelib/fs.walk" "^1.2.8" ajv "^6.10.0" @@ -1259,7 +1267,7 @@ flatted@^3.1.0: resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== -focus-trap@^7.4.2: +focus-trap@^7.4.3: version "7.4.3" resolved "https://registry.yarnpkg.com/focus-trap/-/focus-trap-7.4.3.tgz#a3dae73d44df359eb92bbf37b18e173e813b16c5" integrity sha512-BgSSbK4GPnS2VbtZ50VtOv1Sti6DIkj3+LkVjiWMNjLeAp1SH1UlLx3ULu/DCu4vq5R4/uvTm+zrvsMsuYmGLg== @@ -1882,18 +1890,18 @@ postcss-selector-parser@^6.0.9: util-deprecate "^1.0.2" postcss@^8.1.10, postcss@^8.4.23: - version "8.4.23" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.23.tgz#df0aee9ac7c5e53e1075c24a3613496f9e6552ab" - integrity sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA== + version "8.4.24" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.24.tgz#f714dba9b2284be3cc07dbd2fc57ee4dc972d2df" + integrity sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg== dependencies: nanoid "^3.3.6" picocolors "^1.0.0" source-map-js "^1.0.2" preact@^10.0.0: - version "10.15.0" - resolved "https://registry.yarnpkg.com/preact/-/preact-10.15.0.tgz#14bae0afe3547ca9d45d22fda2a4266462d31cf3" - integrity sha512-nZSa8M2R2m1n7nJSBlzDpxRJaIsejrTO1vlFbdpFvyC8qM1iU+On2y0otfoUm6SRB5o0lF0CKDFxg6grEFU0iQ== + version "10.15.1" + resolved "https://registry.yarnpkg.com/preact/-/preact-10.15.1.tgz#a1de60c9fc0c79a522d969c65dcaddc5d994eede" + integrity sha512-qs2ansoQEwzNiV5eAcRT1p1EC/dmEzaATVDJNiB3g2sRDWdA7b7MurXdJjB2+/WQktGWZwxvDrnuRFbWuIr64g== prelude-ls@^1.2.1: version "1.2.1" @@ -1953,9 +1961,9 @@ rimraf@^3.0.2: glob "^7.1.3" rollup@^3.21.0: - version "3.23.0" - resolved "https://registry.yarnpkg.com/rollup/-/rollup-3.23.0.tgz#b8d6146dac4bf058ee817f92820988e9b358b564" - integrity sha512-h31UlwEi7FHihLe1zbk+3Q7z1k/84rb9BSwmBSr/XjOCEaBJ2YyedQDuM0t/kfOS0IxM+vk1/zI9XxYj9V+NJQ== + version "3.25.0" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-3.25.0.tgz#71327d396a9decbf23c87b55916ae7204211738a" + integrity sha512-FnJkNRst2jEZGw7f+v4hFo6UTzpDKrAKcHZWcEfm5/GJQ5CK7wgb4moNLNAe7npKUev7yQn1AY/YbZRIxOv6Qg== optionalDependencies: fsevents "~2.3.2" @@ -1975,10 +1983,10 @@ safe-regex-test@^1.0.0: get-intrinsic "^1.1.3" is-regex "^1.1.4" -sass@^1.62.1: - version "1.62.1" - resolved "https://registry.yarnpkg.com/sass/-/sass-1.62.1.tgz#caa8d6bf098935bc92fc73fa169fb3790cacd029" - integrity sha512-NHpxIzN29MXvWiuswfc1W3I0N8SXBd8UR26WntmDlRYf0bSADnwnOjsyMZ3lMezSlArD33Vs3YFhp7dWvL770A== +sass@^1.63.3: + version "1.63.3" + resolved "https://registry.yarnpkg.com/sass/-/sass-1.63.3.tgz#527746aa43bf2e4eac1ab424f67f6f18a081061a" + integrity sha512-ySdXN+DVpfwq49jG1+hmtDslYqpS7SkOR5GpF6o2bmb1RL/xS+wvPmegMvMywyfsmAV6p7TgwXYGrCZIFFbAHg== dependencies: chokidar ">=3.0.0 <4.0.0" immutable "^4.0.0" @@ -2153,10 +2161,10 @@ typed-array-length@^1.0.4: for-each "^0.3.3" is-typed-array "^1.1.9" -typescript@^5.0.4: - version "5.0.4" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.0.4.tgz#b217fd20119bd61a94d4011274e0ab369058da3b" - integrity sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw== +typescript@^5.1.3: + version "5.1.3" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.1.3.tgz#8d84219244a6b40b6fb2b33cc1c062f715b9e826" + integrity sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw== unbox-primitive@^1.0.2: version "1.0.2" @@ -2180,10 +2188,10 @@ util-deprecate@^1.0.2: resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== -vite@^4.3.8: - version "4.3.8" - resolved "https://registry.yarnpkg.com/vite/-/vite-4.3.8.tgz#70cd6a294ab52d7fb8f37f5bc63d117dd19e9918" - integrity sha512-uYB8PwN7hbMrf4j1xzGDk/lqjsZvCDbt/JC5dyfxc19Pg8kRm14LinK/uq+HSLNswZEoKmweGdtpbnxRtrAXiQ== +vite@^4.3.9: + version "4.3.9" + resolved "https://registry.yarnpkg.com/vite/-/vite-4.3.9.tgz#db896200c0b1aa13b37cdc35c9e99ee2fdd5f96d" + integrity sha512-qsTNZjO9NoJNW7KnOrgYwczm0WctJ8m/yqYAMAK9Lxt4SoySUfS5S8ia9K7JHpa3KEeMfyF8LoJ3c5NeBJy6pg== dependencies: esbuild "^0.17.5" postcss "^8.4.23" @@ -2191,23 +2199,23 @@ vite@^4.3.8: optionalDependencies: fsevents "~2.3.2" -vitepress@^1.0.0-beta.1: - version "1.0.0-beta.1" - resolved "https://registry.yarnpkg.com/vitepress/-/vitepress-1.0.0-beta.1.tgz#ecd50d72260ca33b7b4d9522594f5bba46579ccc" - integrity sha512-V2yyCwQ+v9fh7rbnGDLp8M7vHa9sLElexXf/JHtBOsOwv7ed9wt1QI4WUagYgKR3TeoJT9v2s6f0UaQSne0EvQ== +vitepress@^1.0.0-beta.2: + version "1.0.0-beta.2" + resolved "https://registry.yarnpkg.com/vitepress/-/vitepress-1.0.0-beta.2.tgz#b277b8d539c5697db274c0f98172809f9516a9bf" + integrity sha512-DBXYjtYbm3W1IPPJ2TiCaK/XK+o/2XmL2+jslOGKm+txcbmG0kbeB+vadC5tCUZA9NdA+9Ywj3M4548c7t/SDg== dependencies: - "@docsearch/css" "^3.3.5" - "@docsearch/js" "^3.3.5" + "@docsearch/css" "^3.5.0" + "@docsearch/js" "^3.5.0" "@vitejs/plugin-vue" "^4.2.3" "@vue/devtools-api" "^6.5.0" "@vueuse/core" "^10.1.2" "@vueuse/integrations" "^10.1.2" body-scroll-lock "4.0.0-beta.0" - focus-trap "^7.4.2" + focus-trap "^7.4.3" mark.js "8.11.1" minisearch "^6.1.0" shiki "^0.14.2" - vite "^4.3.8" + vite "^4.3.9" vue "^3.3.4" vscode-oniguruma@^1.7.0: @@ -2226,9 +2234,9 @@ vue-demi@>=0.14.0: integrity sha512-o9NUVpl/YlsGJ7t+xuqJKx8EBGf1quRhCiT6D/J0pfwmk9zUwYkC7yrF4SZCe6fETvSM3UNL2edcbYrSyc4QHA== vue-eslint-parser@^9.3.0: - version "9.3.0" - resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-9.3.0.tgz#775a974a0603c9a73d85fed8958ed9e814a4a816" - integrity sha512-48IxT9d0+wArT1+3wNIy0tascRoywqSUe2E1YalIC1L8jsUGe5aJQItWfRok7DVFGz3UYvzEI7n5wiTXsCMAcQ== + version "9.3.1" + resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-9.3.1.tgz#429955e041ae5371df5f9e37ebc29ba046496182" + integrity sha512-Clr85iD2XFZ3lJ52/ppmUDG/spxQu6+MAeHXjjyI4I1NUYZ9xmenQp4N0oaHJhrA8OOxltCVxMRfANGa70vU0g== dependencies: debug "^4.3.4" eslint-scope "^7.1.1"