diff --git a/cypress/integration/task/task.spec.js b/cypress/integration/task/task.spec.js index 63df56512..1b85e9921 100644 --- a/cypress/integration/task/task.spec.js +++ b/cypress/integration/task/task.spec.js @@ -128,7 +128,7 @@ describe('Task', () => { cy.visit(`/tasks/${tasks[0].id}`) cy.get('.task-view .action-buttons .button') - .contains('Done!') + .contains('Mark task done!') .click() cy.get('.task-view .heading .is-done') diff --git a/package.json b/package.json index b5e7b8ace..eb3ff293f 100644 --- a/package.json +++ b/package.json @@ -13,6 +13,7 @@ "lint": "eslint --ignore-pattern '*.test.*' ./src --ext .vue,.js,.ts", "cypress:open": "cypress open", "test:unit": "vitest run", + "test:unit-watch": "vitest watch", "test:frontend": "cypress run", "browserslist:update": "npx browserslist@latest --update-db" }, @@ -22,7 +23,7 @@ "@sentry/tracing": "6.16.1", "@sentry/vue": "6.16.1", "@types/is-touch-device": "1.0.0", - "@vue/compat": "3.2.26", + "@vue/compat": "3.2.27", "@vueuse/core": "7.5.2", "@vueuse/router": "7.5.3", "blurhash": "^1.1.4", @@ -32,23 +33,23 @@ "copy-to-clipboard": "3.3.1", "date-fns": "2.28.0", "dompurify": "2.3.4", - "easymde": "2.15.0", + "easymde": "2.16.1", "flatpickr": "4.6.9", "flexsearch": "0.7.21", "highlight.js": "11.4.0", "is-touch-device": "1.0.1", "lodash.clonedeep": "4.5.0", "lodash.debounce": "4.0.8", - "marked": "4.0.9", + "marked": "4.0.10", "register-service-worker": "1.7.2", "snake-case": "3.0.4", "ufo": "0.7.9", - "v-tooltip": "4.0.0-beta.13", - "vue": "3.2.26", + "v-tooltip": "4.0.0-beta.17", + "vue": "3.2.27", "vue-advanced-cropper": "2.7.1", "vue-drag-resize": "2.0.3", "vue-flatpickr-component": "9.0.5", - "vue-i18n": "9.2.0-beta.26", + "vue-i18n": "9.2.0-beta.28", "vue-router": "4.0.12", "vuedraggable": "4.1.0", "vuex": "4.0.2", @@ -61,36 +62,36 @@ "@fortawesome/free-solid-svg-icons": "5.15.4", "@fortawesome/vue-fontawesome": "3.0.0-5", "@types/flexsearch": "0.7.2", - "@typescript-eslint/eslint-plugin": "5.9.0", - "@typescript-eslint/parser": "5.9.0", + "@typescript-eslint/eslint-plugin": "5.9.1", + "@typescript-eslint/parser": "5.9.1", "@vitejs/plugin-legacy": "1.6.4", "@vitejs/plugin-vue": "2.0.1", "@vue/eslint-config-typescript": "10.0.0", "autoprefixer": "10.4.2", "axios": "0.24.0", "browserslist": "4.19.1", - "caniuse-lite": "1.0.30001298", - "cypress": "9.2.0", + "caniuse-lite": "1.0.30001299", + "cypress": "9.2.1", "cypress-file-upload": "5.0.8", - "esbuild": "0.14.10", - "eslint": "8.6.0", - "eslint-plugin-vue": "8.2.0", + "esbuild": "0.14.11", + "eslint": "8.7.0", + "eslint-plugin-vue": "8.3.0", "express": "4.17.2", "faker": "5.5.3", - "netlify-cli": "8.6.15", - "happy-dom": "2.25.1", + "netlify-cli": "8.8.2", + "happy-dom": "2.25.2", "postcss": "8.4.5", - "postcss-preset-env": "7.2.0", - "rollup": "2.63.0", - "rollup-plugin-visualizer": "5.5.2", - "sass": "1.47.0", + "postcss-preset-env": "7.2.3", + "rollup": "2.64.0", + "rollup-plugin-visualizer": "5.5.4", + "sass": "1.48.0", "slugify": "1.6.5", "typescript": "4.5.4", - "vite": "2.7.10", - "vite-plugin-pwa": "0.11.12", - "vite-svg-loader": "3.1.1", - "vitest": "0.0.139", - "vue-tsc": "0.30.2", + "vite": "2.7.12", + "vite-plugin-pwa": "0.11.13", + "vite-svg-loader": "3.1.2", + "vitest": "0.1.17", + "vue-tsc": "0.30.4", "wait-on": "6.0.0", "workbox-cli": "6.4.2" }, diff --git a/renovate.json b/renovate.json index 2019a5e48..440fcf3fd 100644 --- a/renovate.json +++ b/renovate.json @@ -3,5 +3,11 @@ "labels": ["dependencies"], "extends": [ "config:base" + ], + "packageRules": [ + { + "matchPackageNames": ["netlify-cli"], + "extends": ["schedule:weekly"] + } ] } diff --git a/src/components/input/datepicker.vue b/src/components/input/datepicker.vue index afef20e7c..d2432295e 100644 --- a/src/components/input/datepicker.vue +++ b/src/components/input/datepicker.vue @@ -128,10 +128,6 @@ export default { date: null, show: false, changed: false, - - // Since flatpickr dates are strings, we need to convert them to native date objects. - // To make that work, we need a separate variable since flatpickr does not have a change event. - flatPickrDate: null, } }, components: { @@ -164,10 +160,6 @@ export default { handler: 'setDateValue', immediate: true, }, - flatPickrDate(newVal) { - this.date = createDateFromString(newVal) - this.updateData() - }, }, computed: { flatPickerConfig() { @@ -183,6 +175,17 @@ export default { }, } }, + // Since flatpickr dates are strings, we need to convert them to native date objects. + // To make that work, we need a separate variable since flatpickr does not have a change event. + flatPickrDate: { + set(newValue) { + this.date = createDateFromString(newValue) + this.updateData() + }, + get() { + return format(this.date, 'yyy-LL-dd H:mm') + }, + }, }, methods: { setDateValue(newVal) { diff --git a/src/components/input/editor.vue b/src/components/input/editor.vue index 6cddba200..7d5551a00 100644 --- a/src/components/input/editor.vue +++ b/src/components/input/editor.vue @@ -312,8 +312,6 @@ export default { @import './vue-easymde/vue-easymde.css'; @import 'highlight.js/scss/base16/equilibrium-gray-light'; -$editor-border-color: #ddd; - .editor { .clear { clear: both; @@ -337,7 +335,7 @@ $editor-border-color: #ddd; .CodeMirror { padding: .5rem; - border: 1px solid $editor-border-color; + border: 1px solid var(--grey-200) !important; background: var(--white); &-lines pre { @@ -348,6 +346,10 @@ $editor-border-color: #ddd; color: var(--grey-400) !important; font-style: italic; } + + &-cursor { + border-color: var(--grey-700); + } } .editor-preview { @@ -359,12 +361,13 @@ $editor-border-color: #ddd; } .editor-toolbar { - background: #ffffff; - border-top: 1px solid $editor-border-color; - border-left: 1px solid $editor-border-color; - border-right: 1px solid $editor-border-color; + background: var(--grey-50); + border: 1px solid var(--grey-200); + border-bottom: none; button { + color: var(--grey-700); + svg { vertical-align: middle; @@ -379,6 +382,15 @@ $editor-border-color: #ddd; top: 24px; margin-left: -3px; } + + &:hover { + background: var(--grey-200); + border-color: var(--grey-300); + } + } + + i.separator { + border-color: var(--grey-200) !important; } } diff --git a/src/components/input/editorConfig.js b/src/components/input/editorConfig.js index 1629eccd9..4daee10b8 100644 --- a/src/components/input/editorConfig.js +++ b/src/components/input/editorConfig.js @@ -14,112 +14,112 @@ export function createEasyMDEConfig({ placeholder, uploadImage, imageUploadFunct name: 'heading-1', action: EasyMDE.toggleHeading1, title: i18n.global.t('input.editor.heading1'), - icon: '', + icon: '', }, { name: 'heading-2', action: EasyMDE.toggleHeading2, title: i18n.global.t('input.editor.heading2'), - icon: '', + icon: '', }, { name: 'heading-3', action: EasyMDE.toggleHeading3, title: i18n.global.t('input.editor.heading3'), - icon: '', + icon: '', }, { name: 'heading-smaller', action: EasyMDE.toggleHeadingSmaller, title: i18n.global.t('input.editor.headingSmaller'), - icon: '', + icon: '', }, { name: 'heading-bigger', action: EasyMDE.toggleHeadingBigger, title: i18n.global.t('input.editor.headingBigger'), - icon: '', + icon: '', }, '|', { name: 'bold', action: EasyMDE.toggleBold, title: i18n.global.t('input.editor.bold'), - icon: '', + icon: '', }, { name: 'italic', action: EasyMDE.toggleItalic, title: i18n.global.t('input.editor.italic'), - icon: '', + icon: '', }, { name: 'strikethrough', action: EasyMDE.toggleStrikethrough, title: i18n.global.t('input.editor.strikethrough'), - icon: '', + icon: '', }, { name: 'code', action: EasyMDE.toggleCodeBlock, title: i18n.global.t('input.editor.code'), - icon: '', + icon: '', }, { name: 'quote', action: EasyMDE.toggleBlockquote, title: i18n.global.t('input.editor.quote'), - icon: '', + icon: '', }, { name: 'unordered-list', action: EasyMDE.toggleUnorderedList, title: i18n.global.t('input.editor.unorderedList'), - icon: '', + icon: '', }, { name: 'ordered-list', action: EasyMDE.toggleOrderedList, title: i18n.global.t('input.editor.orderedList'), - icon: '', + icon: '', }, '|', { name: 'clean-block', action: EasyMDE.cleanBlock, title: i18n.global.t('input.editor.cleanBlock'), - icon: '', + icon: '', }, { name: 'link', action: EasyMDE.drawLink, title: i18n.global.t('input.editor.link'), - icon: '', + icon: '', }, { name: 'image', action: EasyMDE.drawImage, title: i18n.global.t('input.editor.image'), - icon: '', + icon: '', }, { name: 'table', action: EasyMDE.drawTable, title: i18n.global.t('input.editor.table'), - icon: '', + icon: '', }, { name: 'horizontal-rule', action: EasyMDE.drawHorizontalRule, title: i18n.global.t('input.editor.horizontalRule'), - icon: '', + icon: '', }, '|', { name: 'side-by-side', action: EasyMDE.toggleSideBySide, title: i18n.global.t('input.editor.sideBySide'), - icon: '', + icon: '', }, { name: 'guide', @@ -127,7 +127,7 @@ export function createEasyMDEConfig({ placeholder, uploadImage, imageUploadFunct window.open('https://www.markdownguide.org/basic-syntax/', '_blank') }, title: i18n.global.t('input.editor.guide'), - icon: '', + icon: '', }, ], } diff --git a/src/i18n/lang/cs-CZ.json b/src/i18n/lang/cs-CZ.json index c2faec211..85dac7e14 100644 --- a/src/i18n/lang/cs-CZ.json +++ b/src/i18n/lang/cs-CZ.json @@ -7,7 +7,7 @@ "lastViewed": "Naposledy zobrazeno", "list": { "newText": "Můžete vytvořit nový seznam pro své nové úkoly:", - "new": "New list", + "new": "Nový seznam", "importText": "Nebo importujte své seznamy a úkoly z jiných služeb:", "import": "Importujte svá data do Vikunja" } @@ -157,7 +157,7 @@ "searchSelect": "Klikněte nebo stiskněte Enter pro výběr tohoto seznamu", "shared": "Sdílené seznamy", "create": { - "header": "New list", + "header": "Nový seznam", "titlePlaceholder": "Název seznamu přijde sem…", "addTitleRequired": "Uveďte prosím název.", "createdSuccess": "Seznam byl úspěšně vytvořen.", @@ -315,7 +315,7 @@ "namespaces": "Prostory", "search": "Začni psát pro vyhledání prostoru…", "create": { - "title": "New namespace", + "title": "Nový prostor", "titleRequired": "Uveďte prosím název.", "explanation": "Prostor je kolekce seznamů, které můžete sdílet a používat k organizaci seznamů. Každý seznam patří do nějakého prostoru.", "tooltip": "Co je prostor?", @@ -383,7 +383,7 @@ "reminderRange": "Připomínky - období" }, "create": { - "title": "New Saved Filter", + "title": "Nový uložený filtr", "description": "Uložený filtr je virtuální seznam, který se počítá ze sady filtrů pokaždé, když je přístupný. Jakmile bude vytvořen, objeví se ve speciálním prostoru.", "action": "Vytvořit uložený filtr" }, @@ -545,7 +545,7 @@ "chooseStartDate": "Klikněte zde pro nastavení počátečního data", "chooseEndDate": "Klikněte zde pro nastavení data ukončení", "move": "Přesunout úkol do jiného seznamu", - "done": "Hotovo!", + "done": "Označit úkol jako hotový!", "undone": "Označit jako znovu otevřené", "created": "Vytvořeno {0} uživatelem {1}", "updated": "Aktualizováno {0}", @@ -781,7 +781,7 @@ "then": "potom", "task": { "title": "Stránka úkolů", - "done": "Označit úkol jako hotový", + "done": "Hotovo", "assign": "Přiřadit uživateli", "labels": "Přidat štítky k tomuto úkolu", "dueDate": "Změnit termín tohoto úkolu", @@ -899,7 +899,7 @@ "4015": "Komentář k úkolu neexistuje.", "4016": "Neplatné pole úkolu.", "4017": "Neplatný komparátor filtru úkolů.", - "4018": "Neplatný koncatinátor filtru úkolů.", + "4018": "Invalid task filter concatenator.", "4019": "Neplatná hodnota filtru úkolů.", "5001": "Prostor neexistuje.", "5003": "Nemáte přístup ke zvolenému prostoru.", diff --git a/src/i18n/lang/de-DE.json b/src/i18n/lang/de-DE.json index 5391e639e..032fe5d87 100644 --- a/src/i18n/lang/de-DE.json +++ b/src/i18n/lang/de-DE.json @@ -545,7 +545,7 @@ "chooseStartDate": "Klicke hier, um ein Startdatum zu setzen", "chooseEndDate": "Klicke hier, um ein Enddatum zu setzen", "move": "Aufgabe in eine andere Liste verschieben", - "done": "Fertig!", + "done": "Mark task done!", "undone": "Als nicht erledigt markieren", "created": "Erstellt {0} von {1}", "updated": "Aktualisiert {0}", @@ -781,7 +781,7 @@ "then": "dann", "task": { "title": "Aufgabenseite", - "done": "Eine Aufgabe als erledigt markieren", + "done": "Done", "assign": "Benutzer:in zuweisen", "labels": "Dieser Aufgabe ein Label hinzufügen", "dueDate": "Ändere das Fälligkeitsdatum dieser Aufgabe", @@ -899,7 +899,7 @@ "4015": "Dieser Aufgabenkommentar existiert nicht.", "4016": "Ungültiges Aufgabenfeld.", "4017": "Ungültiger Aufgabenfilter (Vergleichskriterium).", - "4018": "Ungültiger Aufgabenfilter (Kombination).", + "4018": "Invalid task filter concatenator.", "4019": "Ungültiger Aufgabenfilter (Wert).", "5001": "Dieser Namespace existiert nicht.", "5003": "Du hast keinen Zugriff auf den Namespace.", diff --git a/src/i18n/lang/de-swiss.json b/src/i18n/lang/de-swiss.json index 053cf3ebf..212b70b92 100644 --- a/src/i18n/lang/de-swiss.json +++ b/src/i18n/lang/de-swiss.json @@ -545,7 +545,7 @@ "chooseStartDate": "Druck dah, um es Startdatum z'setze", "chooseEndDate": "Druck da, um es Enddatum z'setze", "move": "Schieb die Uufgab in e anderi Liste", - "done": "Fertig!", + "done": "Mark task done!", "undone": "Als unerledigt markierä", "created": "Erstellt am {0} vo {1}", "updated": "{0} g'updatet", @@ -781,7 +781,7 @@ "then": "dann", "task": { "title": "Uufgabesiite", - "done": "Uufgab als erledigt markiere", + "done": "Done", "assign": "Benutzer:in zuweisen", "labels": "Labels ennere Uufgab hinzuefüege", "dueDate": "S'Fälligkeitsdatum für die Uufgab ändere", @@ -899,7 +899,7 @@ "4015": "De Uufgabe Kommentar giz nid.", "4016": "Ungültigs Uufgabefeld.", "4017": "Ungültige Uufgabefilter vergliich.", - "4018": "Ungültige Uufgabefilter Zemmezug.", + "4018": "Invalid task filter concatenator.", "4019": "Ungültigi Uufgabe Filter Wert.", "5001": "De Namensruum existiert nid.", "5003": "Du hesch kei Zuegriff zu dem Namensruum.", diff --git a/src/i18n/lang/en.json b/src/i18n/lang/en.json index 7e145529a..1f03d175b 100644 --- a/src/i18n/lang/en.json +++ b/src/i18n/lang/en.json @@ -545,7 +545,7 @@ "chooseStartDate": "Click here to set a start date", "chooseEndDate": "Click here to set an end date", "move": "Move task to a different list", - "done": "Done!", + "done": "Mark task done!", "undone": "Mark as undone", "created": "Created {0} by {1}", "updated": "Updated {0}", @@ -781,7 +781,7 @@ "then": "then", "task": { "title": "Task Page", - "done": "Mark a task as done", + "done": "Done", "assign": "Assign to a user", "labels": "Add labels to this task", "dueDate": "Change the due date of this task", @@ -899,7 +899,7 @@ "4015": "The task comment does not exist.", "4016": "Invalid task field.", "4017": "Invalid task filter comparator.", - "4018": "Invalid task filter concatinator.", + "4018": "Invalid task filter concatenator.", "4019": "Invalid task filter value.", "5001": "The namespace does not exist.", "5003": "You do not have access to the specified namespace.", diff --git a/src/i18n/lang/es-ES.json b/src/i18n/lang/es-ES.json index 7e145529a..1f03d175b 100644 --- a/src/i18n/lang/es-ES.json +++ b/src/i18n/lang/es-ES.json @@ -545,7 +545,7 @@ "chooseStartDate": "Click here to set a start date", "chooseEndDate": "Click here to set an end date", "move": "Move task to a different list", - "done": "Done!", + "done": "Mark task done!", "undone": "Mark as undone", "created": "Created {0} by {1}", "updated": "Updated {0}", @@ -781,7 +781,7 @@ "then": "then", "task": { "title": "Task Page", - "done": "Mark a task as done", + "done": "Done", "assign": "Assign to a user", "labels": "Add labels to this task", "dueDate": "Change the due date of this task", @@ -899,7 +899,7 @@ "4015": "The task comment does not exist.", "4016": "Invalid task field.", "4017": "Invalid task filter comparator.", - "4018": "Invalid task filter concatinator.", + "4018": "Invalid task filter concatenator.", "4019": "Invalid task filter value.", "5001": "The namespace does not exist.", "5003": "You do not have access to the specified namespace.", diff --git a/src/i18n/lang/fr-FR.json b/src/i18n/lang/fr-FR.json index b79c040ae..9ae5ce8f7 100644 --- a/src/i18n/lang/fr-FR.json +++ b/src/i18n/lang/fr-FR.json @@ -545,7 +545,7 @@ "chooseStartDate": "Clique ici pour fixer une date de début", "chooseEndDate": "Clique ici pour fixer une date de fin", "move": "Déplacer une tâche vers une autre liste", - "done": "Terminé !", + "done": "Mark task done!", "undone": "Marquer comme inachevé", "created": "Créé {0} par {1}", "updated": "Mis à jour {0}", @@ -781,7 +781,7 @@ "then": "puis", "task": { "title": "Page de tâche", - "done": "Marquer une tâche comme terminée", + "done": "Done", "assign": "Assign to a user", "labels": "Ajouter des étiquettes à cette tâche", "dueDate": "Modifier la date d’échéance de cette tâche", @@ -899,7 +899,7 @@ "4015": "Le commentaire de la tâche n’existe pas.", "4016": "Champ de tâche invalide.", "4017": "Comparateur de filtre de tâche invalide.", - "4018": "Concaténateur de filtre de tâche invalide.", + "4018": "Invalid task filter concatenator.", "4019": "Valeur de filtre de tâche invalide.", "5001": "L’espace de noms n’existe pas.", "5003": "Tu n’as pas accès à l’espace de noms indiqué.", diff --git a/src/i18n/lang/it-IT.json b/src/i18n/lang/it-IT.json index 1ececae56..ebdb9158e 100644 --- a/src/i18n/lang/it-IT.json +++ b/src/i18n/lang/it-IT.json @@ -545,7 +545,7 @@ "chooseStartDate": "Clicca qui per impostare una data di inizio", "chooseEndDate": "Clicca qui per impostare una data di fine", "move": "Sposta attività in un'altra lista", - "done": "Fatto!", + "done": "Mark task done!", "undone": "Segna come non completato", "created": "Creato {0} da {1}", "updated": "Aggiornato {0}", @@ -781,7 +781,7 @@ "then": "then", "task": { "title": "Task Page", - "done": "Mark a task as done", + "done": "Done", "assign": "Assign to a user", "labels": "Add labels to this task", "dueDate": "Change the due date of this task", @@ -899,7 +899,7 @@ "4015": "The task comment does not exist.", "4016": "Invalid task field.", "4017": "Invalid task filter comparator.", - "4018": "Invalid task filter concatinator.", + "4018": "Invalid task filter concatenator.", "4019": "Invalid task filter value.", "5001": "The namespace does not exist.", "5003": "You do not have access to the specified namespace.", diff --git a/src/i18n/lang/nl-NL.json b/src/i18n/lang/nl-NL.json index 7e145529a..1f03d175b 100644 --- a/src/i18n/lang/nl-NL.json +++ b/src/i18n/lang/nl-NL.json @@ -545,7 +545,7 @@ "chooseStartDate": "Click here to set a start date", "chooseEndDate": "Click here to set an end date", "move": "Move task to a different list", - "done": "Done!", + "done": "Mark task done!", "undone": "Mark as undone", "created": "Created {0} by {1}", "updated": "Updated {0}", @@ -781,7 +781,7 @@ "then": "then", "task": { "title": "Task Page", - "done": "Mark a task as done", + "done": "Done", "assign": "Assign to a user", "labels": "Add labels to this task", "dueDate": "Change the due date of this task", @@ -899,7 +899,7 @@ "4015": "The task comment does not exist.", "4016": "Invalid task field.", "4017": "Invalid task filter comparator.", - "4018": "Invalid task filter concatinator.", + "4018": "Invalid task filter concatenator.", "4019": "Invalid task filter value.", "5001": "The namespace does not exist.", "5003": "You do not have access to the specified namespace.", diff --git a/src/i18n/lang/pt-BR.json b/src/i18n/lang/pt-BR.json index 7e145529a..1f03d175b 100644 --- a/src/i18n/lang/pt-BR.json +++ b/src/i18n/lang/pt-BR.json @@ -545,7 +545,7 @@ "chooseStartDate": "Click here to set a start date", "chooseEndDate": "Click here to set an end date", "move": "Move task to a different list", - "done": "Done!", + "done": "Mark task done!", "undone": "Mark as undone", "created": "Created {0} by {1}", "updated": "Updated {0}", @@ -781,7 +781,7 @@ "then": "then", "task": { "title": "Task Page", - "done": "Mark a task as done", + "done": "Done", "assign": "Assign to a user", "labels": "Add labels to this task", "dueDate": "Change the due date of this task", @@ -899,7 +899,7 @@ "4015": "The task comment does not exist.", "4016": "Invalid task field.", "4017": "Invalid task filter comparator.", - "4018": "Invalid task filter concatinator.", + "4018": "Invalid task filter concatenator.", "4019": "Invalid task filter value.", "5001": "The namespace does not exist.", "5003": "You do not have access to the specified namespace.", diff --git a/src/i18n/lang/pt-PT.json b/src/i18n/lang/pt-PT.json index 7e145529a..1f03d175b 100644 --- a/src/i18n/lang/pt-PT.json +++ b/src/i18n/lang/pt-PT.json @@ -545,7 +545,7 @@ "chooseStartDate": "Click here to set a start date", "chooseEndDate": "Click here to set an end date", "move": "Move task to a different list", - "done": "Done!", + "done": "Mark task done!", "undone": "Mark as undone", "created": "Created {0} by {1}", "updated": "Updated {0}", @@ -781,7 +781,7 @@ "then": "then", "task": { "title": "Task Page", - "done": "Mark a task as done", + "done": "Done", "assign": "Assign to a user", "labels": "Add labels to this task", "dueDate": "Change the due date of this task", @@ -899,7 +899,7 @@ "4015": "The task comment does not exist.", "4016": "Invalid task field.", "4017": "Invalid task filter comparator.", - "4018": "Invalid task filter concatinator.", + "4018": "Invalid task filter concatenator.", "4019": "Invalid task filter value.", "5001": "The namespace does not exist.", "5003": "You do not have access to the specified namespace.", diff --git a/src/i18n/lang/ro-RO.json b/src/i18n/lang/ro-RO.json index 7e145529a..1f03d175b 100644 --- a/src/i18n/lang/ro-RO.json +++ b/src/i18n/lang/ro-RO.json @@ -545,7 +545,7 @@ "chooseStartDate": "Click here to set a start date", "chooseEndDate": "Click here to set an end date", "move": "Move task to a different list", - "done": "Done!", + "done": "Mark task done!", "undone": "Mark as undone", "created": "Created {0} by {1}", "updated": "Updated {0}", @@ -781,7 +781,7 @@ "then": "then", "task": { "title": "Task Page", - "done": "Mark a task as done", + "done": "Done", "assign": "Assign to a user", "labels": "Add labels to this task", "dueDate": "Change the due date of this task", @@ -899,7 +899,7 @@ "4015": "The task comment does not exist.", "4016": "Invalid task field.", "4017": "Invalid task filter comparator.", - "4018": "Invalid task filter concatinator.", + "4018": "Invalid task filter concatenator.", "4019": "Invalid task filter value.", "5001": "The namespace does not exist.", "5003": "You do not have access to the specified namespace.", diff --git a/src/i18n/lang/ru-RU.json b/src/i18n/lang/ru-RU.json index a7e1bc70a..49b46546d 100644 --- a/src/i18n/lang/ru-RU.json +++ b/src/i18n/lang/ru-RU.json @@ -545,7 +545,7 @@ "chooseStartDate": "Нажми для выбора даты начала", "chooseEndDate": "Нажми для выбора даты завершения", "move": "Переместить задачу в другой список", - "done": "Завершено!", + "done": "Mark task done!", "undone": "Не завершено", "created": "Создана {0} пользователем {1}", "updated": "Обновлено {0}", @@ -781,7 +781,7 @@ "then": "then", "task": { "title": "Страница задачи", - "done": "Пометить задачу завершённой", + "done": "Done", "assign": "Assign to a user", "labels": "Добавить метки этой задаче", "dueDate": "Изменить срок этой задачи", @@ -899,7 +899,7 @@ "4015": "Комментарий не существует.", "4016": "Неверное поле задачи.", "4017": "Неверный сравнитель фильтров задач.", - "4018": "Неверный соединитель фильтров задач.", + "4018": "Invalid task filter concatenator.", "4019": "Неверное значение фильтра задач.", "5001": "Пространство имён не существует.", "5003": "Нет доступа к указанному пространству имён.", diff --git a/src/i18n/lang/sv-SE.json b/src/i18n/lang/sv-SE.json index 7e145529a..1f03d175b 100644 --- a/src/i18n/lang/sv-SE.json +++ b/src/i18n/lang/sv-SE.json @@ -545,7 +545,7 @@ "chooseStartDate": "Click here to set a start date", "chooseEndDate": "Click here to set an end date", "move": "Move task to a different list", - "done": "Done!", + "done": "Mark task done!", "undone": "Mark as undone", "created": "Created {0} by {1}", "updated": "Updated {0}", @@ -781,7 +781,7 @@ "then": "then", "task": { "title": "Task Page", - "done": "Mark a task as done", + "done": "Done", "assign": "Assign to a user", "labels": "Add labels to this task", "dueDate": "Change the due date of this task", @@ -899,7 +899,7 @@ "4015": "The task comment does not exist.", "4016": "Invalid task field.", "4017": "Invalid task filter comparator.", - "4018": "Invalid task filter concatinator.", + "4018": "Invalid task filter concatenator.", "4019": "Invalid task filter value.", "5001": "The namespace does not exist.", "5003": "You do not have access to the specified namespace.", diff --git a/src/i18n/lang/tr-TR.json b/src/i18n/lang/tr-TR.json index 7e145529a..1f03d175b 100644 --- a/src/i18n/lang/tr-TR.json +++ b/src/i18n/lang/tr-TR.json @@ -545,7 +545,7 @@ "chooseStartDate": "Click here to set a start date", "chooseEndDate": "Click here to set an end date", "move": "Move task to a different list", - "done": "Done!", + "done": "Mark task done!", "undone": "Mark as undone", "created": "Created {0} by {1}", "updated": "Updated {0}", @@ -781,7 +781,7 @@ "then": "then", "task": { "title": "Task Page", - "done": "Mark a task as done", + "done": "Done", "assign": "Assign to a user", "labels": "Add labels to this task", "dueDate": "Change the due date of this task", @@ -899,7 +899,7 @@ "4015": "The task comment does not exist.", "4016": "Invalid task field.", "4017": "Invalid task filter comparator.", - "4018": "Invalid task filter concatinator.", + "4018": "Invalid task filter concatenator.", "4019": "Invalid task filter value.", "5001": "The namespace does not exist.", "5003": "You do not have access to the specified namespace.", diff --git a/src/i18n/lang/vi-VN.json b/src/i18n/lang/vi-VN.json index 6371f5e65..d027aae70 100644 --- a/src/i18n/lang/vi-VN.json +++ b/src/i18n/lang/vi-VN.json @@ -545,7 +545,7 @@ "chooseStartDate": "Bấm vào đây để đặt ngày bắt đầu", "chooseEndDate": "Bấm vào đây để đặt ngày kết thúc", "move": "Di chuyển công việc sang một danh sách khác", - "done": "Xong!", + "done": "Mark task done!", "undone": "Đánh dấu Chưa xong", "created": "Đã tạo được {0} bởi {1}", "updated": "Đã cập nhật {0}", @@ -781,7 +781,7 @@ "then": "sau đó", "task": { "title": "Trang công việc", - "done": "Đánh dấu hoàn thành", + "done": "Done", "assign": "Chỉ định một người", "labels": "Thêm nhãn cho công việc này", "dueDate": "Thay đổi ngày hết hạn của công việc này", @@ -899,7 +899,7 @@ "4015": "Bình luận không tồn tại.", "4016": "Trường công việc không hợp lệ.", "4017": "Bộ so sánh bộ lọc công việc không hợp lệ.", - "4018": "Bộ lọc kết hợp không hợp lệ.", + "4018": "Invalid task filter concatenator.", "4019": "Giá trị bộ lọc công việc không hợp lệ.", "5001": "Góc làm việc không có nữa.", "5003": "Bạn chưa được phép bước vào vào góc làm việc được chỉ định.", diff --git a/src/modules/parseTaskText.test.js b/src/modules/parseTaskText.test.js index 4b3ade216..19f3ba17a 100644 --- a/src/modules/parseTaskText.test.js +++ b/src/modules/parseTaskText.test.js @@ -32,6 +32,13 @@ describe('Parse Task Text', () => { expect(result.assignees).toHaveLength(1) expect(result.assignees[0]).toBe('user') }) + + it('should ignore email addresses', () => { + const text = 'Lorem Ipsum email@example.com' + const result = parseTaskText(text) + + expect(result.text).toBe(text) + }) describe('Date Parsing', () => { it('should not return any date if none was provided', () => { diff --git a/src/modules/parseTaskText.ts b/src/modules/parseTaskText.ts index 30434f004..80c33e3da 100644 --- a/src/modules/parseTaskText.ts +++ b/src/modules/parseTaskText.ts @@ -117,23 +117,30 @@ export const parseTaskText = (text: string, prefixesMode: PrefixMode = PrefixMod const getItemsFromPrefix = (text: string, prefix: string): string[] => { const items: string[] = [] - const itemParts = text.split(prefix) + const itemParts = text.split(' ' + prefix) + if (text.startsWith(prefix)) { + const firstItem = text.split(prefix)[1] + itemParts.unshift(firstItem) + } + itemParts.forEach((p, index) => { // First part contains the rest if (index < 1) { return } - let labelText + p = p.replace(prefix, '') + + let itemText if (p.charAt(0) === '\'') { - labelText = p.split('\'')[1] + itemText = p.split('\'')[1] } else if (p.charAt(0) === '"') { - labelText = p.split('"')[1] + itemText = p.split('"')[1] } else { // Only until the next space - labelText = p.split(' ')[0] + itemText = p.split(' ')[0] } - items.push(labelText) + items.push(itemText) }) return Array.from(new Set(items)) diff --git a/src/store/modules/auth.js b/src/store/modules/auth.js index 420783225..c5dd10325 100644 --- a/src/store/modules/auth.js +++ b/src/store/modules/auth.js @@ -226,7 +226,7 @@ export default { commit('info', info) commit('lastUserRefresh') - if (typeof info.settings.language !== 'undefined') { + if (typeof info.settings.language === 'undefined' || info.settings.language === '') { // save current language await dispatch('saveUserSettings', { settings: { diff --git a/src/views/tasks/TaskDetailView.vue b/src/views/tasks/TaskDetailView.vue index 6336a1a7c..e2171698e 100644 --- a/src/views/tasks/TaskDetailView.vue +++ b/src/views/tasks/TaskDetailView.vue @@ -627,7 +627,6 @@ export default { } this.task = await this.$store.dispatch('tasks/update', this.task) - this.setActiveFields() if (!showNotification) { return @@ -871,7 +870,7 @@ $flash-background-duration: 750ms; } .action-buttons { - a.button { + .button { width: 100%; margin-bottom: .5rem; justify-content: left; diff --git a/yarn.lock b/yarn.lock index 2f77509cb..631f95fca 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1858,43 +1858,43 @@ resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== -"@intlify/core-base@9.2.0-beta.26": - version "9.2.0-beta.26" - resolved "https://registry.yarnpkg.com/@intlify/core-base/-/core-base-9.2.0-beta.26.tgz#0092cfce681a47db1a502583e0108d61cd7b7327" - integrity sha512-4OXSF0zC70UElev6gam4FdWfC7u4l2ouNK9Hc6R44QlpEXkzhbwwbpZn9gIGB2l11zQnJkAwaovfYyiNJ/JvkA== +"@intlify/core-base@9.2.0-beta.28": + version "9.2.0-beta.28" + resolved "https://registry.yarnpkg.com/@intlify/core-base/-/core-base-9.2.0-beta.28.tgz#e8b1e4adfa7a262c6ed169ad7b15dbe2a173cb27" + integrity sha512-p7iXwVQFyBmEo65KoqRCbT6Ig3OI6rnaS/zeMCKtp6Bjsbg35VGAaiN05Eyrq78BCh2Ir1S6nl+Cz3y00D0yoQ== dependencies: - "@intlify/devtools-if" "9.2.0-beta.26" - "@intlify/message-compiler" "9.2.0-beta.26" - "@intlify/shared" "9.2.0-beta.26" - "@intlify/vue-devtools" "9.2.0-beta.26" + "@intlify/devtools-if" "9.2.0-beta.28" + "@intlify/message-compiler" "9.2.0-beta.28" + "@intlify/shared" "9.2.0-beta.28" + "@intlify/vue-devtools" "9.2.0-beta.28" -"@intlify/devtools-if@9.2.0-beta.26": - version "9.2.0-beta.26" - resolved "https://registry.yarnpkg.com/@intlify/devtools-if/-/devtools-if-9.2.0-beta.26.tgz#06e498825aa1f4984476c2da9b1bcf9cdc3d0424" - integrity sha512-7GiF7v2jlHf7g5hoLF6sKlrX5Di2INfHN4PEAeVr2ashgoSaq1EYIRouBVAnJkOrDOJzCOEY7y53me7+gIbeTw== +"@intlify/devtools-if@9.2.0-beta.28": + version "9.2.0-beta.28" + resolved "https://registry.yarnpkg.com/@intlify/devtools-if/-/devtools-if-9.2.0-beta.28.tgz#daca7b4348a59109778558e7f5769e5f6b422d4e" + integrity sha512-3RL38hDBRipipoYRl4Ggu98M4/XqDKm0jW8kcOWpuocB/aZBBEGzoQfeaq09Xa9SA46podjntBlYDAOGQyXqqg== dependencies: - "@intlify/shared" "9.2.0-beta.26" + "@intlify/shared" "9.2.0-beta.28" -"@intlify/message-compiler@9.2.0-beta.26": - version "9.2.0-beta.26" - resolved "https://registry.yarnpkg.com/@intlify/message-compiler/-/message-compiler-9.2.0-beta.26.tgz#9cc5f9f112030483c4a35eaef105ba68cc888fa0" - integrity sha512-qtDgHCMqrXNTekKXGzm0Dm6r3+/X7/jFXP+E07hx+PJbPMv7DzK1iU8h5LlAMQ1/jr2UIRBgXvR5wh35OKoGrA== +"@intlify/message-compiler@9.2.0-beta.28": + version "9.2.0-beta.28" + resolved "https://registry.yarnpkg.com/@intlify/message-compiler/-/message-compiler-9.2.0-beta.28.tgz#caae08ead8c6c02e2d0de39e1e8bdbbb99683c83" + integrity sha512-NBH9fZyitN2cijGt8bmU1W7ZPdhKbgW01L1RxJKFJW0cRaCmknJq63Aif1Q6xcxKt9ZhPbvIKHgPGzg1nWMfeA== dependencies: - "@intlify/shared" "9.2.0-beta.26" + "@intlify/shared" "9.2.0-beta.28" source-map "0.6.1" -"@intlify/shared@9.2.0-beta.26": - version "9.2.0-beta.26" - resolved "https://registry.yarnpkg.com/@intlify/shared/-/shared-9.2.0-beta.26.tgz#430f69235c12f002a93796cc74eb28546bed6be4" - integrity sha512-MjUlkjNThqkqy8yXUcFKBiW/hIfqAn5cP3Vd0b4wdOHS8rPCEbvSbAnF08uiZDkVv8gTcsLyymX21GaU6oYyyQ== +"@intlify/shared@9.2.0-beta.28": + version "9.2.0-beta.28" + resolved "https://registry.yarnpkg.com/@intlify/shared/-/shared-9.2.0-beta.28.tgz#50bd3f769bcab6f80e00027761b3397e268f9d02" + integrity sha512-JBMcoj1D4kSAma7Vb0+d8z6lPLIn7hIdZJPxbU8bgeMMniwKLoIS/jGlEfrZihsB5+otckPeQp203z8skwVS0w== -"@intlify/vue-devtools@9.2.0-beta.26": - version "9.2.0-beta.26" - resolved "https://registry.yarnpkg.com/@intlify/vue-devtools/-/vue-devtools-9.2.0-beta.26.tgz#1528e053d72aadf796bf478daeb33c5f700d8a98" - integrity sha512-Ghe2xTSezRzL2fBdIbZEus5+5spE2RMxgjBg6GyvbsDy1M05o2OvukBninJ4/Tc2I5A30lYgAsF1gQlOyfmv1g== +"@intlify/vue-devtools@9.2.0-beta.28": + version "9.2.0-beta.28" + resolved "https://registry.yarnpkg.com/@intlify/vue-devtools/-/vue-devtools-9.2.0-beta.28.tgz#60113c137a380433961934045b9cf046c8773341" + integrity sha512-kf9Gt64sjP1fJQHUlB3m/RFDeJBcrvRImcEl6g0BV13K/xyA9u9RGM89YpR16F5KKTXdhpkvroLWh2uo4pc6jg== dependencies: - "@intlify/core-base" "9.2.0-beta.26" - "@intlify/shared" "9.2.0-beta.26" + "@intlify/core-base" "9.2.0-beta.28" + "@intlify/shared" "9.2.0-beta.28" "@jest/types@^25.5.0": version "25.5.0" @@ -1945,18 +1945,18 @@ call-me-maybe "^1.0.1" glob-to-regexp "^0.3.0" -"@netlify/build@^26.1.0": - version "26.1.0" - resolved "https://registry.yarnpkg.com/@netlify/build/-/build-26.1.0.tgz#72860e5c90e95a8733731f54e1805a9333bd708b" - integrity sha512-BZEC/8jUizGkZboc7RGGTC23KcFUH9MawpfH5ecFVM30gzL3LEdAOFZS/xvgffC3s5s2vsnZenslICowUpJueA== +"@netlify/build@^26.1.3": + version "26.1.3" + resolved "https://registry.yarnpkg.com/@netlify/build/-/build-26.1.3.tgz#136a85c93e83b3f3b41e2c6787cdbb6b787fa2e2" + integrity sha512-DmuMkdIT5whw90vN4NV9RtBK+yh6sM2/mXalIQyT0XSGKhr77SjY3ZHgzE8JE0BHAklMN+xphQLTjvESk+L4Ng== dependencies: "@bugsnag/js" "^7.0.0" "@netlify/cache-utils" "^4.0.0" "@netlify/config" "^17.0.0" "@netlify/functions-utils" "^4.0.0" "@netlify/git-utils" "^4.0.0" - "@netlify/plugin-edge-handlers" "^3.0.0" - "@netlify/plugins-list" "^6.2.0" + "@netlify/plugin-edge-handlers" "^3.0.3" + "@netlify/plugins-list" "^6.2.1" "@netlify/run-utils" "^4.0.0" "@netlify/zip-it-and-ship-it" "^5.4.0" "@sindresorhus/slugify" "^1.1.0" @@ -1973,7 +1973,6 @@ keep-func-props "^3.0.0" locate-path "^6.0.0" log-process-errors "^6.0.0" - make-dir "^3.0.2" map-obj "^4.0.0" memoize-one "^6.0.0" os-name "^4.0.1" @@ -2086,10 +2085,10 @@ resolved "https://registry.yarnpkg.com/@netlify/esbuild/-/esbuild-0.13.6.tgz#ef0fda98604e708528ef0a57e853c50a6fc987f2" integrity sha512-tiKmDcHM2riSVN79c0mJY/67EBDafXQAMitHuLiCDAMdtz3kfv+NqdVG5krgf5lWR8Uf8AeZrUW5Q9RP25REvw== -"@netlify/framework-info@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@netlify/framework-info/-/framework-info-7.0.0.tgz#7e342c13da704cec38ffcca26f2d3b037321463c" - integrity sha512-VjZ0Uwy85iM54qzCNJDBtySYJuoxBXhvWpMFhrUUZcsbONDSOpodcblo+5/jtUZnoYUfAIhS/WSdo/Pf/EEBsA== +"@netlify/framework-info@^8.0.1": + version "8.0.1" + resolved "https://registry.yarnpkg.com/@netlify/framework-info/-/framework-info-8.0.1.tgz#2f10baf4017ad39f2c90dc90a3724aa3e797d2a3" + integrity sha512-fEvnNMPTFrjHui43UVsljopAmkB4TdY3ewtL1oKhBeiIW+QjN9EexrmkosFJznjLPb/SzS9i3hkd24ae1lVPEg== dependencies: ajv "^8.0.0" filter-obj "^2.0.1" @@ -2208,10 +2207,10 @@ resolved "https://registry.yarnpkg.com/@netlify/open-api/-/open-api-2.8.0.tgz#e59537ae9aa8342c2aa64952d42e5e089c8422f4" integrity sha512-lfNB/QYDgaP07pwm/nWEaWPvRAAGyhxvJqNzvxMijc7A4uwquMjlbYve8yYyd0LJXPwgBpGobwiQj5RA76xzUQ== -"@netlify/plugin-edge-handlers@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@netlify/plugin-edge-handlers/-/plugin-edge-handlers-3.0.0.tgz#c81b3449b509ebaed075c535013441f85e9db372" - integrity sha512-lolaK+xaY0Hud4tE89baA9FrwxebTvSTVTeQAEK3a9yj1o0jZrEzaBW9kGZ89lwANb4Mghz3PLaksOlEH179MA== +"@netlify/plugin-edge-handlers@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@netlify/plugin-edge-handlers/-/plugin-edge-handlers-3.0.3.tgz#5244be82bbbd2a0b1216e4753f1866379498863c" + integrity sha512-Yj862RtTGXDgKEKJzfL9FNlonpxTGSVDEeRyt/Kpp7gKoW5z1Vr6h1T1Ymq7GKuFqFeGT6IKaxG6aJt24/rbTw== dependencies: "@babel/core" "^7.11.4" "@babel/preset-env" "^7.11.5" @@ -2220,22 +2219,19 @@ "@rollup/plugin-inject" "^4.0.2" "@rollup/plugin-json" "^4.1.0" "@rollup/plugin-node-resolve" "^11.0.0" - "@types/node" "^16.0.0" buffer-es6 "^4.9.3" del "^6.0.0" - make-dir "^3.1.0" node-fetch "^2.6.1" path-type "^4.0.0" process-es6 "^0.11.6" rollup "^2.23.1" rollup-plugin-node-polyfills "^0.2.1" rollup-plugin-terser "^7.0.2" - typescript "^4.1.5" -"@netlify/plugins-list@^6.2.0": - version "6.2.0" - resolved "https://registry.yarnpkg.com/@netlify/plugins-list/-/plugins-list-6.2.0.tgz#dec7eef1a5bac9fc0f44b45a22c9839591428279" - integrity sha512-ZkrNrq1A/pVt32XsSLye9We0v+f0yqnOMD32Yu17KoMsL6AVF0KOyiAqjuJFNOZlusTkLgmZuMAbtmriybP0AQ== +"@netlify/plugins-list@^6.2.1": + version "6.2.1" + resolved "https://registry.yarnpkg.com/@netlify/plugins-list/-/plugins-list-6.2.1.tgz#ae0c7decf9d202f2964020a297b4adbc8eb7ffb1" + integrity sha512-/sXe4hjTFgKnRDFDiqU1qLvRCc+JtOqTLFf3aMNA6Xp7bSKGtTYJFOwTpPIUUOyLaDqbBdU3IOjemc6EtyC8qg== "@netlify/routing-local-proxy-darwin-arm64@^0.34.1": version "0.34.1" @@ -2751,10 +2747,10 @@ resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.3.0.tgz#23509ebc1fa32f1b4d50d6a66c4032d5b8eaabdc" integrity sha512-/ceqdqeRraGolFTcfoXNiqjyQhZzbINDngeoAq9GoHa8PPK1yNzTaxWjA6BFWp5Ua9JpXEMSS4s5i9tS0hOJtw== -"@types/codemirror@0.0.109": - version "0.0.109" - resolved "https://registry.yarnpkg.com/@types/codemirror/-/codemirror-0.0.109.tgz#89d575ff1c7b462c4c3b8654f8bb38e5622e9036" - integrity sha512-cSdiHeeLjvGn649lRTNeYrVCDOgDrtP+bDDSFDd1TF+i0jKGPDRozno2NOJ9lTniso+taiv4kiVS8dgM8Jm5lg== +"@types/codemirror@^5.60.4": + version "5.60.5" + resolved "https://registry.yarnpkg.com/@types/codemirror/-/codemirror-5.60.5.tgz#5b989a3b4bbe657458cf372c92b6bfda6061a2b7" + integrity sha512-TiECZmm8St5YxjFUp64LK0c8WU5bxMDt9YaAek1UqUb9swrSCoJhh92fWu1p3mTEqlHjhB5sY7OFBhWroJXZVg== dependencies: "@types/tern" "*" @@ -2874,10 +2870,10 @@ dependencies: "@types/node" "*" -"@types/marked@^2.0.2": - version "2.0.4" - resolved "https://registry.yarnpkg.com/@types/marked/-/marked-2.0.4.tgz#34a0ea548afe6e0c01095229d47b48b2af650613" - integrity sha512-L9VRSe0Id8xbPL99mUo/4aKgD7ZoRwFZqUQScNKHi2pFjF9ZYSMNShUHD6VlMT6J/prQq0T1mxuU25m3R7dFzg== +"@types/marked@^4.0.1": + version "4.0.1" + resolved "https://registry.yarnpkg.com/@types/marked/-/marked-4.0.1.tgz#d588a7bbc4d6551c5e75249bc106ffda96ae33c5" + integrity sha512-ZigEmCWdNUU7IjZEuQ/iaimYdDHWHfTe3kg8ORfKjyGYd9RWumPoOJRQXB0bO+XLkNwzCthW3wUIQtANaEZ1ag== "@types/minimatch@*": version "3.0.5" @@ -2912,11 +2908,6 @@ resolved "https://registry.yarnpkg.com/@types/node/-/node-14.17.6.tgz#cc61c8361c89e70c468cda464d1fa3dd7e5ebd62" integrity sha512-iBxsxU7eswQDGhlr3AiamBxOssaYxbM+NKXVil8jg9yFXvrfEFbDumLD/2dMTB+zYyg7w+Xjt8yuxfdbUHAtcQ== -"@types/node@^16.0.0": - version "16.11.10" - resolved "https://registry.yarnpkg.com/@types/node/-/node-16.11.10.tgz#2e3ad0a680d96367103d3e670d41c2fed3da61ae" - integrity sha512-3aRnHa1KlOEEhJ6+CvyHKK5vE9BcLGjtUpwvqYLRvYNQKMfabu3BwfJaA/SLW8dxe28LsNDjtHwePTuzn3gmOA== - "@types/node@^8.0.0": version "8.10.66" resolved "https://registry.yarnpkg.com/@types/node/-/node-8.10.66.tgz#dd035d409df322acc83dff62a602f12a5783bbb3" @@ -2992,14 +2983,14 @@ dependencies: "@types/node" "*" -"@typescript-eslint/eslint-plugin@5.9.0": - version "5.9.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.9.0.tgz#382182d5cb062f52aac54434cfc47c28898c8006" - integrity sha512-qT4lr2jysDQBQOPsCCvpPUZHjbABoTJW8V9ZzIYKHMfppJtpdtzszDYsldwhFxlhvrp7aCHeXD1Lb9M1zhwWwQ== +"@typescript-eslint/eslint-plugin@5.9.1": + version "5.9.1" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.9.1.tgz#e5a86d7e1f9dc0b3df1e6d94feaf20dd838d066c" + integrity sha512-Xv9tkFlyD4MQGpJgTo6wqDqGvHIRmRgah/2Sjz1PUnJTawjHWIwBivUE9x0QtU2WVii9baYgavo/bHjrZJkqTw== dependencies: - "@typescript-eslint/experimental-utils" "5.9.0" - "@typescript-eslint/scope-manager" "5.9.0" - "@typescript-eslint/type-utils" "5.9.0" + "@typescript-eslint/experimental-utils" "5.9.1" + "@typescript-eslint/scope-manager" "5.9.1" + "@typescript-eslint/type-utils" "5.9.1" debug "^4.3.2" functional-red-black-tree "^1.0.1" ignore "^5.1.8" @@ -3033,26 +3024,26 @@ eslint-scope "^5.1.1" eslint-utils "^3.0.0" -"@typescript-eslint/experimental-utils@5.9.0": - version "5.9.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-5.9.0.tgz#652762d37d6565ef07af285021b8347b6c79a827" - integrity sha512-ZnLVjBrf26dn7ElyaSKa6uDhqwvAi4jBBmHK1VxuFGPRAxhdi18ubQYSGA7SRiFiES3q9JiBOBHEBStOFkwD2g== +"@typescript-eslint/experimental-utils@5.9.1": + version "5.9.1" + resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-5.9.1.tgz#8c407c4dd5ffe522329df6e4c9c2b52206d5f7f1" + integrity sha512-cb1Njyss0mLL9kLXgS/eEY53SZQ9sT519wpX3i+U457l2UXRDuo87hgKfgRazmu9/tQb0x2sr3Y0yrU+Zz0y+w== dependencies: "@types/json-schema" "^7.0.9" - "@typescript-eslint/scope-manager" "5.9.0" - "@typescript-eslint/types" "5.9.0" - "@typescript-eslint/typescript-estree" "5.9.0" + "@typescript-eslint/scope-manager" "5.9.1" + "@typescript-eslint/types" "5.9.1" + "@typescript-eslint/typescript-estree" "5.9.1" eslint-scope "^5.1.1" eslint-utils "^3.0.0" -"@typescript-eslint/parser@5.9.0": - version "5.9.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.9.0.tgz#fdbb08767a4caa6ca6ccfed5f9ffe9387f0c7d97" - integrity sha512-/6pOPz8yAxEt4PLzgbFRDpZmHnXCeZgPDrh/1DaVKOjvn/UPMlWhbx/gA96xRi2JxY1kBl2AmwVbyROUqys5xQ== +"@typescript-eslint/parser@5.9.1": + version "5.9.1" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.9.1.tgz#b114011010a87e17b3265ca715e16c76a9834cef" + integrity sha512-PLYO0AmwD6s6n0ZQB5kqPgfvh73p0+VqopQQLuNfi7Lm0EpfKyDalchpVwkE+81k5HeiRrTV/9w1aNHzjD7C4g== dependencies: - "@typescript-eslint/scope-manager" "5.9.0" - "@typescript-eslint/types" "5.9.0" - "@typescript-eslint/typescript-estree" "5.9.0" + "@typescript-eslint/scope-manager" "5.9.1" + "@typescript-eslint/types" "5.9.1" + "@typescript-eslint/typescript-estree" "5.9.1" debug "^4.3.2" "@typescript-eslint/parser@^5.0.0": @@ -3073,20 +3064,20 @@ "@typescript-eslint/types" "5.8.0" "@typescript-eslint/visitor-keys" "5.8.0" -"@typescript-eslint/scope-manager@5.9.0": - version "5.9.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.9.0.tgz#02dfef920290c1dcd7b1999455a3eaae7a1a3117" - integrity sha512-DKtdIL49Qxk2a8icF6whRk7uThuVz4A6TCXfjdJSwOsf+9ree7vgQWcx0KOyCdk0i9ETX666p4aMhrRhxhUkyg== +"@typescript-eslint/scope-manager@5.9.1": + version "5.9.1" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.9.1.tgz#6c27be89f1a9409f284d95dfa08ee3400166fe69" + integrity sha512-8BwvWkho3B/UOtzRyW07ffJXPaLSUKFBjpq8aqsRvu6HdEuzCY57+ffT7QoV4QXJXWSU1+7g3wE4AlgImmQ9pQ== dependencies: - "@typescript-eslint/types" "5.9.0" - "@typescript-eslint/visitor-keys" "5.9.0" + "@typescript-eslint/types" "5.9.1" + "@typescript-eslint/visitor-keys" "5.9.1" -"@typescript-eslint/type-utils@5.9.0": - version "5.9.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.9.0.tgz#fd5963ead04bc9b7af9c3a8e534d8d39f1ce5f93" - integrity sha512-uVCb9dJXpBrK1071ri5aEW7ZHdDHAiqEjYznF3HSSvAJXyrkxGOw2Ejibz/q6BXdT8lea8CMI0CzKNFTNI6TEQ== +"@typescript-eslint/type-utils@5.9.1": + version "5.9.1" + resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.9.1.tgz#c6832ffe655b9b1fec642d36db1a262d721193de" + integrity sha512-tRSpdBnPRssjlUh35rE9ug5HrUvaB9ntREy7gPXXKwmIx61TNN7+l5YKgi1hMKxo5NvqZCfYhA5FvyuJG6X6vg== dependencies: - "@typescript-eslint/experimental-utils" "5.9.0" + "@typescript-eslint/experimental-utils" "5.9.1" debug "^4.3.2" tsutils "^3.21.0" @@ -3100,10 +3091,10 @@ resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.8.0.tgz#e7fa74ec35d9dbe3560d039d3d8734986c3971e0" integrity sha512-LdCYOqeqZWqCMOmwFnum6YfW9F3nKuxJiR84CdIRN5nfHJ7gyvGpXWqL/AaW0k3Po0+wm93ARAsOdzlZDPCcXg== -"@typescript-eslint/types@5.9.0": - version "5.9.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.9.0.tgz#e5619803e39d24a03b3369506df196355736e1a3" - integrity sha512-mWp6/b56Umo1rwyGCk8fPIzb9Migo8YOniBGPAQDNC6C52SeyNGN4gsVwQTAR+RS2L5xyajON4hOLwAGwPtUwg== +"@typescript-eslint/types@5.9.1": + version "5.9.1" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.9.1.tgz#1bef8f238a2fb32ebc6ff6d75020d9f47a1593c6" + integrity sha512-SsWegWudWpkZCwwYcKoDwuAjoZXnM1y2EbEerTHho19Hmm+bQ56QG4L4jrtCu0bI5STaRTvRTZmjprWlTw/5NQ== "@typescript-eslint/typescript-estree@5.8.0": version "5.8.0" @@ -3118,13 +3109,13 @@ semver "^7.3.5" tsutils "^3.21.0" -"@typescript-eslint/typescript-estree@5.9.0": - version "5.9.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.9.0.tgz#0e5c6f03f982931abbfbc3c1b9df5fbf92a3490f" - integrity sha512-kxo3xL2mB7XmiVZcECbaDwYCt3qFXz99tBSuVJR4L/sR7CJ+UNAPrYILILktGj1ppfZ/jNt/cWYbziJUlHl1Pw== +"@typescript-eslint/typescript-estree@5.9.1": + version "5.9.1" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.9.1.tgz#d5b996f49476495070d2b8dd354861cf33c005d6" + integrity sha512-gL1sP6A/KG0HwrahVXI9fZyeVTxEYV//6PmcOn1tD0rw8VhUWYeZeuWHwwhnewnvEMcHjhnJLOBhA9rK4vmb8A== dependencies: - "@typescript-eslint/types" "5.9.0" - "@typescript-eslint/visitor-keys" "5.9.0" + "@typescript-eslint/types" "5.9.1" + "@typescript-eslint/visitor-keys" "5.9.1" debug "^4.3.2" globby "^11.0.4" is-glob "^4.0.3" @@ -3160,12 +3151,12 @@ "@typescript-eslint/types" "5.8.0" eslint-visitor-keys "^3.0.0" -"@typescript-eslint/visitor-keys@5.9.0": - version "5.9.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.9.0.tgz#7585677732365e9d27f1878150fab3922784a1a6" - integrity sha512-6zq0mb7LV0ThExKlecvpfepiB+XEtFv/bzx7/jKSgyXTFD7qjmSu1FoiS0x3OZaiS+UIXpH2vd9O89f02RCtgw== +"@typescript-eslint/visitor-keys@5.9.1": + version "5.9.1" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.9.1.tgz#f52206f38128dd4f675cf28070a41596eee985b7" + integrity sha512-Xh37pNz9e9ryW4TVdwiFzmr4hloty8cFj8GTWMXh3Z8swGwyQWeCcNgF0hm6t09iZd6eiZmIf4zHedQVP6TVtg== dependencies: - "@typescript-eslint/types" "5.9.0" + "@typescript-eslint/types" "5.9.1" eslint-visitor-keys "^3.0.0" "@vercel/nft@^0.17.0": @@ -3205,57 +3196,58 @@ resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-2.0.1.tgz#db0e5eacf96358e04cc501c9008079b25a70a4ac" integrity sha512-wtdMnGVvys9K8tg+DxowU1ytTrdVveXr3LzdhaKakysgGXyrsfaeds2cDywtvujEASjWOwWL/OgWM+qoeM8Plg== -"@volar/code-gen@0.30.2": - version "0.30.2" - resolved "https://registry.yarnpkg.com/@volar/code-gen/-/code-gen-0.30.2.tgz#4165f33d9cf208e56acc35261555c461c7576019" - integrity sha512-75rlb3rw/O/HiXxrOsVJ8JhEssqtN4dJ0i6oG4kL0udr+QM0TwN0PqaEhoMRyMFV6kBPPSunBBJQ3XNAb0PtGA== +"@volar/code-gen@0.30.4": + version "0.30.4" + resolved "https://registry.yarnpkg.com/@volar/code-gen/-/code-gen-0.30.4.tgz#13312633b1b46921a632df78e3ddfc9e7f640188" + integrity sha512-osezZO69tIQ8AlFeNEzD7p4is8txJzY/CTQo0kFJ+7dKeeIboRhv7K0jalfUAdQHi9vONmfkX9kUc9J+dk4UgQ== dependencies: - "@volar/shared" "0.30.2" - "@volar/source-map" "0.30.2" + "@volar/shared" "0.30.4" + "@volar/source-map" "0.30.4" -"@volar/html2pug@0.30.2": - version "0.30.2" - resolved "https://registry.yarnpkg.com/@volar/html2pug/-/html2pug-0.30.2.tgz#a9a33ee31bb76368a9206cc28f1715fb64431e85" - integrity sha512-k/DLGoXALaQgnacP1MoJ77AwnCHlKcsQKJJug8Qdou3+yOrzYjSSEP6uwG8BS0Fv1h4d4JYmlXsxW8gJPGXSQQ== +"@volar/html2pug@0.30.4": + version "0.30.4" + resolved "https://registry.yarnpkg.com/@volar/html2pug/-/html2pug-0.30.4.tgz#c2c39460e2bf9c5380ceb55d80870a26a722d690" + integrity sha512-Em/2eUiKnwvYoLSzk1bKpvPxGAqz/05LyBF+odr3DXTw4ujGNVbH07rkQSp7CzhpiwD7NzGzbFTQOzDUzuEbPA== dependencies: domelementtype "^2.2.0" domhandler "^4.3.0" htmlparser2 "^7.2.0" pug "^3.0.2" -"@volar/shared@0.30.2": - version "0.30.2" - resolved "https://registry.yarnpkg.com/@volar/shared/-/shared-0.30.2.tgz#6b496db56a6083abd2b21db920aa950164d9c093" - integrity sha512-93Q7i758WjScg4ptvDcpk66r4Paz9StVMH/M5RCsU4/9F5a1xSCUJbkbpwE0zESkVzcuBatDqk79PaZ8TZKqRg== +"@volar/shared@0.30.4": + version "0.30.4" + resolved "https://registry.yarnpkg.com/@volar/shared/-/shared-0.30.4.tgz#356a08bd634171391687c3e656eeac1d24be7b97" + integrity sha512-dutVNA3OUgFwcs7LzVJu4DgJhFAGHBmJOCwpEnzxxDcgeCH7Tb0tbqes3Lxo0kKPTT0xPd49xsjXV+bSp0m5lQ== dependencies: upath "^2.0.1" + vscode-html-languageservice "^4.2.1" vscode-jsonrpc "^8.0.0-next.4" vscode-uri "^3.0.2" -"@volar/source-map@0.30.2": - version "0.30.2" - resolved "https://registry.yarnpkg.com/@volar/source-map/-/source-map-0.30.2.tgz#ee8cd729d97f75b08cf280a252ae21d63ed34a1c" - integrity sha512-gwa9OiSjUOZWYutJX53m/KDU/zaF0yN3RP2B8J0aMVyT5dE/VaIfknSxPAW5QFC6AT79Ea1HKGtChuSBgqHCfA== +"@volar/source-map@0.30.4": + version "0.30.4" + resolved "https://registry.yarnpkg.com/@volar/source-map/-/source-map-0.30.4.tgz#a9dbd0fad195a473f3b97cac63479641b4662cd0" + integrity sha512-+gxpxBC/IfgHA+JvpbQil7hV6cZ9zUlHNGKo7H3yu5418ikzKZOuJNVN+81IWg2mQhKBMeZISI9oFfmzkMtDaw== dependencies: - "@volar/shared" "0.30.2" + "@volar/shared" "0.30.4" vscode-languageserver-textdocument "^1.0.3" -"@volar/transforms@0.30.2": - version "0.30.2" - resolved "https://registry.yarnpkg.com/@volar/transforms/-/transforms-0.30.2.tgz#04fc761ec895db19dbed49b5c3f6c13f57d94f74" - integrity sha512-bc+55NGlBbMLHkpChqAEgsblYJxjNHiKVMbVUMi52xKa2l9gOWXNbn5WRsHfz4AR+Cq/Zm0AvVJ10ehLQsGsow== +"@volar/transforms@0.30.4": + version "0.30.4" + resolved "https://registry.yarnpkg.com/@volar/transforms/-/transforms-0.30.4.tgz#f3941e58247ba6788dec15a10b57e7a5126f43ad" + integrity sha512-jNHe5hAp+7MHAkWKKETB9wxOGEDHXVuCm3eY65/7eTtE0c1eH2ukcWY4d9t21GuFSXmXzFxqrxWeSGbQJSJztw== dependencies: - "@volar/shared" "0.30.2" + "@volar/shared" "0.30.4" vscode-languageserver-types "^3.17.0-next.5" -"@volar/vue-code-gen@0.30.2": - version "0.30.2" - resolved "https://registry.yarnpkg.com/@volar/vue-code-gen/-/vue-code-gen-0.30.2.tgz#5279fa2587e1974a98c70d3206d25247f1fcaa6c" - integrity sha512-kJyVkQFhMvVQ32aDaC6h5DdXG1GJbJjeeAkCnjfCJfMmuYjM5R4QNZHDz1TI0dETgF9vP+kbAukQKNWecHK3qg== +"@volar/vue-code-gen@0.30.4": + version "0.30.4" + resolved "https://registry.yarnpkg.com/@volar/vue-code-gen/-/vue-code-gen-0.30.4.tgz#4ccb2cf1bb03f661d0a2d33241267bed4160a1ac" + integrity sha512-mLDZ6/YfE3+E/8SnPEFz1mkXldXfsoboYniSqAjliWN2W6x8CslQTcv5luhBvJChzzLPzZxvQEtpnx/G3iP3yA== dependencies: - "@volar/code-gen" "0.30.2" - "@volar/shared" "0.30.2" - "@volar/source-map" "0.30.2" + "@volar/code-gen" "0.30.4" + "@volar/shared" "0.30.4" + "@volar/source-map" "0.30.4" "@vue/compiler-core" "^3.2.26" "@vue/compiler-dom" "^3.2.26" "@vue/shared" "^3.2.26" @@ -3273,10 +3265,10 @@ vscode-nls "^5.0.0" vscode-uri "^2.1.2" -"@vue/compat@3.2.26": - version "3.2.26" - resolved "https://registry.yarnpkg.com/@vue/compat/-/compat-3.2.26.tgz#971b68591c208dfcec8db4e84732646f48c524e1" - integrity sha512-XCS3oPvcv8rtYMpjQ3W++AGF4fLKk9Jm3eXsSAv0sBZ8Z+OO28cm/TBMGlgnD9wf0krg1QkVBGHKXjvLMtoCig== +"@vue/compat@3.2.27": + version "3.2.27" + resolved "https://registry.yarnpkg.com/@vue/compat/-/compat-3.2.27.tgz#faeac50138024737a2d9bb664627c1ac19ef0c3e" + integrity sha512-BqwwsTtawcbZdPgN5tJJKiQXbM5y9XQVGx+0p9NHJOHZCwsHMZmm6nOQN3a/9YjmgLAvo2ZkcLfnzwdMwWcvuA== "@vue/compiler-core@3.2.21": version "3.2.21" @@ -3298,6 +3290,16 @@ estree-walker "^2.0.2" source-map "^0.6.1" +"@vue/compiler-core@3.2.27": + version "3.2.27" + resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.2.27.tgz#01bd5e5071f58f43e4184ba7fa810226799a5383" + integrity sha512-JyxAglSM/pb9paG5ZNuKrf5IUpzLzQA3khjWGF9oESELCLQlt6O3YyPMR2A69wIpYWrf5mScZ8YY8TJKOI/1kQ== + dependencies: + "@babel/parser" "^7.16.4" + "@vue/shared" "3.2.27" + estree-walker "^2.0.2" + source-map "^0.6.1" + "@vue/compiler-dom@3.2.21": version "3.2.21" resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.2.21.tgz#d6f6c85364ef8888f9c4e9122bfba11e78fb398c" @@ -3306,7 +3308,15 @@ "@vue/compiler-core" "3.2.21" "@vue/shared" "3.2.21" -"@vue/compiler-dom@3.2.26", "@vue/compiler-dom@^3.2.26": +"@vue/compiler-dom@3.2.27": + version "3.2.27" + resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.2.27.tgz#a12163e3f3f1d5ff1969253eba4b4ea3e67bbd0f" + integrity sha512-NyQ7nEbopUBPUMHM4c3FPCbFbnQwptoPjW5Y5qfJ7hfiCNhOuhQsDNqi5JYKBxfpxiFNwjcN9F8t1AsnLrDloQ== + dependencies: + "@vue/compiler-core" "3.2.27" + "@vue/shared" "3.2.27" + +"@vue/compiler-dom@^3.2.26": version "3.2.26" resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.2.26.tgz#c7a7b55d50a7b7981dd44fc28211df1450482667" integrity sha512-smBfaOW6mQDxcT3p9TKT6mE22vjxjJL50GFVJiI0chXYGU/xzC05QRGrW3HHVuJrmLTLx5zBhsZ2dIATERbarg== @@ -3314,17 +3324,17 @@ "@vue/compiler-core" "3.2.26" "@vue/shared" "3.2.26" -"@vue/compiler-sfc@3.2.26": - version "3.2.26" - resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.2.26.tgz#3ce76677e4aa58311655a3bea9eb1cb804d2273f" - integrity sha512-ePpnfktV90UcLdsDQUh2JdiTuhV0Skv2iYXxfNMOK/F3Q+2BO0AulcVcfoksOpTJGmhhfosWfMyEaEf0UaWpIw== +"@vue/compiler-sfc@3.2.27": + version "3.2.27" + resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.2.27.tgz#43bf23fe24feacba334636fa7a332f9d8a532c8c" + integrity sha512-WyecUhLN5UAQAr2QlmG2nA56OEnhZJaBnSw0G1tazb9rwDuK0V9tnbIXbQgmQlx+x4sJxgg61yWGcIXfilTl3A== dependencies: "@babel/parser" "^7.16.4" - "@vue/compiler-core" "3.2.26" - "@vue/compiler-dom" "3.2.26" - "@vue/compiler-ssr" "3.2.26" - "@vue/reactivity-transform" "3.2.26" - "@vue/shared" "3.2.26" + "@vue/compiler-core" "3.2.27" + "@vue/compiler-dom" "3.2.27" + "@vue/compiler-ssr" "3.2.27" + "@vue/reactivity-transform" "3.2.27" + "@vue/shared" "3.2.27" estree-walker "^2.0.2" magic-string "^0.25.7" postcss "^8.1.10" @@ -3354,13 +3364,13 @@ "@vue/compiler-dom" "3.2.21" "@vue/shared" "3.2.21" -"@vue/compiler-ssr@3.2.26": - version "3.2.26" - resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.2.26.tgz#fd049523341fbf4ab5e88e25eef566d862894ba7" - integrity sha512-2mywLX0ODc4Zn8qBoA2PDCsLEZfpUGZcyoFRLSOjyGGK6wDy2/5kyDOWtf0S0UvtoyVq95OTSGIALjZ4k2q/ag== +"@vue/compiler-ssr@3.2.27": + version "3.2.27" + resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.2.27.tgz#49aa3afd1602275aba3c3e331764984111a460bf" + integrity sha512-+l09t319iV7HVSrXfBw9OLwMZIPOFTXmHjZ61Bc5ZcwKqOYAR4uTurKpoXAfcSc5qs/q6WdE9jY3nrP0LUEMQQ== dependencies: - "@vue/compiler-dom" "3.2.26" - "@vue/shared" "3.2.26" + "@vue/compiler-dom" "3.2.27" + "@vue/shared" "3.2.27" "@vue/devtools-api@^6.0.0-beta.11": version "6.0.0-beta.15" @@ -3386,18 +3396,25 @@ "@typescript-eslint/parser" "^5.0.0" vue-eslint-parser "^8.0.0" -"@vue/reactivity-transform@3.2.26": - version "3.2.26" - resolved "https://registry.yarnpkg.com/@vue/reactivity-transform/-/reactivity-transform-3.2.26.tgz#6d8f20a4aa2d19728f25de99962addbe7c4d03e9" - integrity sha512-XKMyuCmzNA7nvFlYhdKwD78rcnmPb7q46uoR00zkX6yZrUmcCQ5OikiwUEVbvNhL5hBJuvbSO95jB5zkUon+eQ== +"@vue/reactivity-transform@3.2.27": + version "3.2.27" + resolved "https://registry.yarnpkg.com/@vue/reactivity-transform/-/reactivity-transform-3.2.27.tgz#610b6df174cdceba6de1376f3218736c3b0e753d" + integrity sha512-67//61ObGxGnVrPhjygocb24eYUh+TFMhkm7szm8v5XdKXjkNl7qgIOflwGvUnwuIRJmr9nZ7+PvY0fL+H2upA== dependencies: "@babel/parser" "^7.16.4" - "@vue/compiler-core" "3.2.26" - "@vue/shared" "3.2.26" + "@vue/compiler-core" "3.2.27" + "@vue/shared" "3.2.27" estree-walker "^2.0.2" magic-string "^0.25.7" -"@vue/reactivity@3.2.26", "@vue/reactivity@^3.2.26": +"@vue/reactivity@3.2.27": + version "3.2.27" + resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.2.27.tgz#db7c4eefded938a8974e768b7b8f9ff4fad34a62" + integrity sha512-QPfIQEJidRGIu/mPexhcB4csp1LEg2Nr+/QE72MnXs/OYDtFErhC9FxIyymkxp/xvAgL5wsnSOuDD6zWF42vRQ== + dependencies: + "@vue/shared" "3.2.27" + +"@vue/reactivity@^3.2.26": version "3.2.26" resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.2.26.tgz#d529191e581521c3c12e29ef986d4c8a933a0f83" integrity sha512-h38bxCZLW6oFJVDlCcAiUKFnXI8xP8d+eO0pcDxx+7dQfSPje2AO6M9S9QO6MrxQB7fGP0DH0dYQ8ksf6hrXKQ== @@ -3415,30 +3432,30 @@ estree-walker "^2.0.2" magic-string "^0.25.7" -"@vue/runtime-core@3.2.26": - version "3.2.26" - resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.2.26.tgz#5c59cc440ed7a39b6dbd4c02e2d21c8d1988f0de" - integrity sha512-BcYi7qZ9Nn+CJDJrHQ6Zsmxei2hDW0L6AB4vPvUQGBm2fZyC0GXd/4nVbyA2ubmuhctD5RbYY8L+5GUJszv9mQ== +"@vue/runtime-core@3.2.27": + version "3.2.27" + resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.2.27.tgz#1ea8acd30071f44bcf3915b088ff5d993a9d3154" + integrity sha512-NJrjuViHJyrT4bwIocbE4XDaDlA1Pj61pQlneZZdFEvgdMLlhzCCiJ4WZnWcohYQeisUAZjEFKK8GjQieDPFbw== dependencies: - "@vue/reactivity" "3.2.26" - "@vue/shared" "3.2.26" + "@vue/reactivity" "3.2.27" + "@vue/shared" "3.2.27" -"@vue/runtime-dom@3.2.26": - version "3.2.26" - resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.2.26.tgz#84d3ae2584488747717c2e072d5d9112c0d2e6c2" - integrity sha512-dY56UIiZI+gjc4e8JQBwAifljyexfVCkIAu/WX8snh8vSOt/gMSEGwPRcl2UpYpBYeyExV8WCbgvwWRNt9cHhQ== +"@vue/runtime-dom@3.2.27": + version "3.2.27" + resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.2.27.tgz#d13f9f5f27815041f5e9f493d77121955e3f7166" + integrity sha512-tlnKkvBSkV7MPUp/wRFsYcv67U1rUeZTPfpPzq5Kpmw5NNGkY6J075fFBH2k0MNxDucXS+qfStNrxAyGTUMkSA== dependencies: - "@vue/runtime-core" "3.2.26" - "@vue/shared" "3.2.26" + "@vue/runtime-core" "3.2.27" + "@vue/shared" "3.2.27" csstype "^2.6.8" -"@vue/server-renderer@3.2.26": - version "3.2.26" - resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.2.26.tgz#f16a4b9fbcc917417b4cea70c99afce2701341cf" - integrity sha512-Jp5SggDUvvUYSBIvYEhy76t4nr1vapY/FIFloWmQzn7UxqaHrrBpbxrqPcTrSgGrcaglj0VBp22BKJNre4aA1w== +"@vue/server-renderer@3.2.27": + version "3.2.27" + resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.2.27.tgz#a0caee0f7571fa741e4efaa72951a1cd70d61551" + integrity sha512-dZnzkFCDe6A/GIe/F1LcG6lWpprHVh62DjTv8wubtkHwfJWOmOeHp+KvPDRrswL/L3ghsm+E31xY+pvkgM3pbQ== dependencies: - "@vue/compiler-ssr" "3.2.26" - "@vue/shared" "3.2.26" + "@vue/compiler-ssr" "3.2.27" + "@vue/shared" "3.2.27" "@vue/shared@3.2.21": version "3.2.21" @@ -3450,6 +3467,11 @@ resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.2.26.tgz#7acd1621783571b9a82eca1f041b4a0a983481d9" integrity sha512-vPV6Cq+NIWbH5pZu+V+2QHE9y1qfuTq49uNWw4f7FDEeZaDU2H2cx5jcUZOAKW7qTrUS4k6qZPbMy1x4N96nbA== +"@vue/shared@3.2.27": + version "3.2.27" + resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.2.27.tgz#d5c6e574ee1afd55043470bf70b15772da4e19a2" + integrity sha512-rpAn9k6O08Lvo7ekBIAnkOukX/4EsEQLPrRJBKhIEasMsOI5eX0f6mq1sDUSY7cgAqWw2d7QtP74CWxdXoyKxA== + "@vueuse/core@7.5.2": version "7.5.2" resolved "https://registry.yarnpkg.com/@vueuse/core/-/core-7.5.2.tgz#96a46ebc1e64e14a0c0e265eceed2c4e7e5f4d9e" @@ -3925,7 +3947,7 @@ atob@^2.1.2: resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== -autoprefixer@10.4.2: +autoprefixer@10.4.2, autoprefixer@^10.4.2: version "10.4.2" resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.2.tgz#25e1df09a31a9fba5c40b578936b90d35c9d4d3b" integrity sha512-9fOPpHKuDW1w/0EKfRmVnxTDt8166MAnLI3mgZ1JCnhNtYWxcJ6Ud5CO/AVOZi/AvFa8DY9RTy3h3+tFBlrrdQ== @@ -3937,18 +3959,6 @@ autoprefixer@10.4.2: picocolors "^1.0.0" postcss-value-parser "^4.2.0" -autoprefixer@^10.4.1: - version "10.4.1" - resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.1.tgz#1735959d6462420569bc42408016acbc56861c12" - integrity sha512-B3ZEG7wtzXDRCEFsan7HmR2AeNsxdJB0+sEC0Hc5/c2NbhJqPwuZm+tn233GBVw82L+6CtD6IPSfVruwKjfV3A== - dependencies: - browserslist "^4.19.1" - caniuse-lite "^1.0.30001294" - fraction.js "^4.1.2" - normalize-range "^0.1.2" - picocolors "^1.0.0" - postcss-value-parser "^4.2.0" - aws-sign2@~0.7.0: version "0.7.0" resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" @@ -4461,26 +4471,16 @@ camelcase@^6.0.0, camelcase@^6.2.0: resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.2.0.tgz#924af881c9d525ac9d87f40d964e5cea982a1809" integrity sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg== -caniuse-lite@1.0.30001298: - version "1.0.30001298" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001298.tgz#0e690039f62e91c3ea581673d716890512e7ec52" - integrity sha512-AcKqikjMLlvghZL/vfTHorlQsLDhGRalYf1+GmWCf5SCMziSGjRYQW/JEksj14NaYHIR6KIhrFAy0HV5C25UzQ== +caniuse-lite@1.0.30001299, caniuse-lite@^1.0.30001299: + version "1.0.30001299" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001299.tgz#d753bf6444ed401eb503cbbe17aa3e1451b5a68c" + integrity sha512-iujN4+x7QzqA2NCSrS5VUy+4gLmRd4xv6vbBBsmfVqTx8bLAD8097euLqQgKxSVLvxjSDcvF1T/i9ocgnUFexw== caniuse-lite@^1.0.30001219, caniuse-lite@^1.0.30001271, caniuse-lite@^1.0.30001274, caniuse-lite@^1.0.30001286: version "1.0.30001286" resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001286.tgz" integrity sha512-zaEMRH6xg8ESMi2eQ3R4eZ5qw/hJiVsO/HlLwniIwErij0JDr9P+8V4dtx1l+kLq6j3yy8l8W4fst1lBnat5wQ== -caniuse-lite@^1.0.30001294: - version "1.0.30001294" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001294.tgz#4849f27b101fd59ddee3751598c663801032533d" - integrity sha512-LiMlrs1nSKZ8qkNhpUf5KD0Al1KCBE3zaT7OLOwEkagXMEDij98SiOovn9wxVGQpklk9vVC/pUSqgYmkmKOS8g== - -caniuse-lite@^1.0.30001295: - version "1.0.30001295" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001295.tgz#68a60f8f0664f342b2835c5d8898b4faea7b3d51" - integrity sha512-lSP16vcyC0FEy0R4ECc9duSPoKoZy+YkpGkue9G4D81OfPnliopaZrU10+qtPdT8PbGXad/PNx43TIQrOmJZSQ== - caniuse-lite@^1.0.30001297: version "1.0.30001297" resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001297.tgz#ea7776ccc4992956582cae5b8fea127fbebde430" @@ -4690,15 +4690,14 @@ cli-spinners@^2.5.0: resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.6.0.tgz#36c7dc98fb6a9a76bd6238ec3f77e2425627e939" integrity sha512-t+4/y50K/+4xcCRosKkA7W4gTr1MySvLV0q+PxmG7FJ5g+66ChKurYjxBCjHggHH3HA5Hh9cy+lcUGWDqVH+4Q== -cli-table3@~0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.6.0.tgz#b7b1bc65ca8e7b5cef9124e13dc2b21e2ce4faee" - integrity sha512-gnB85c3MGC7Nm9I/FkiasNBOKjOiO1RNuXXarQms37q4QMpWdlbBgD/VnOStA2faG1dpXMv31RFApjX1/QdgWQ== +cli-table3@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.6.1.tgz#36ce9b7af4847f288d3cdd081fbd09bf7bd237b8" + integrity sha512-w0q/enDHhPLq44ovMGdQeeDLvwxwavsJX7oQGYt/LrBlYsyaxyDnp6z3QzFut/6kLLKnlcUVJLrpB7KBfgG/RA== dependencies: - object-assign "^4.1.0" string-width "^4.2.0" optionalDependencies: - colors "^1.1.2" + colors "1.4.0" cli-truncate@^0.2.1: version "0.2.1" @@ -4768,16 +4767,11 @@ codemirror-spell-checker@1.1.2: dependencies: typo-js "*" -codemirror@5.65.0: +codemirror@5.65.0, codemirror@^5.63.1: version "5.65.0" resolved "https://registry.yarnpkg.com/codemirror/-/codemirror-5.65.0.tgz#50344359393579f526ca53797e510ff75477117f" integrity sha512-gWEnHKEcz1Hyz7fsQWpK7P0sPI2/kSkRX2tc7DFA6TmZuDN75x/1ejnH/Pn8adYKrLEA1V2ww6L00GudHZbSKw== -codemirror@^5.61.0: - version "5.62.2" - resolved "https://registry.yarnpkg.com/codemirror/-/codemirror-5.62.2.tgz#bce6d19c9829e6e788f83886d48ecf5c1e106e65" - integrity sha512-tVFMUa4J3Q8JUd1KL9yQzQB0/BJt7ZYZujZmTPgo/54Lpuq3ez4C8x/ATUY/wv7b7X3AUq8o3Xd+2C5ZrCGWHw== - collection-visit@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" @@ -4836,7 +4830,7 @@ colorette@^1.2.2: resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.2.tgz#cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94" integrity sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w== -colors@^1.1.2, colors@^1.2.1: +colors@1.4.0, colors@^1.1.2, colors@^1.2.1: version "1.4.0" resolved "https://registry.yarnpkg.com/colors/-/colors-1.4.0.tgz#c50491479d4c1bdaed2c9ced32cf7c7dc2360f78" integrity sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA== @@ -5141,17 +5135,17 @@ crypto-random-string@^2.0.0: resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5" integrity sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA== -css-blank-pseudo@^3.0.1: +css-blank-pseudo@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/css-blank-pseudo/-/css-blank-pseudo-3.0.2.tgz#f8660f6a48b17888a9277e53f25cc5abec1f0169" integrity sha512-hOb1LFjRR+8ocA071xUSmg5VslJ8NGo/I2qpUpdeAYyBVCgupS5O8SEVo4SxEMYyFBNodBkzG3T1iqW9HCXxew== dependencies: postcss-selector-parser "^6.0.8" -css-has-pseudo@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/css-has-pseudo/-/css-has-pseudo-3.0.2.tgz#00dff8ce80757c53f260e36987f0cf32646c6911" - integrity sha512-L11waKbVuSf5WVrj1Qtij91OH8BN37Q3HlL+ojUUAa1Ywd53CYxJ8+0gs5cNbRXkqBwchE1Cq0cjgYjYEw24RA== +css-has-pseudo@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/css-has-pseudo/-/css-has-pseudo-3.0.3.tgz#4824a34cb92dae7e09ea1d3fd19691b653412098" + integrity sha512-0gDYWEKaGacwxCqvQ3Ypg6wGdD1AztbMm5h1JsactG2hP2eiflj808QITmuWBpE7sjSEVrAlZhPTVd/nNMj/hQ== dependencies: postcss-selector-parser "^6.0.8" @@ -5216,10 +5210,10 @@ cypress-file-upload@5.0.8: resolved "https://registry.yarnpkg.com/cypress-file-upload/-/cypress-file-upload-5.0.8.tgz#d8824cbeaab798e44be8009769f9a6c9daa1b4a1" integrity sha512-+8VzNabRk3zG6x8f8BWArF/xA/W0VK4IZNx3MV0jFWrJS/qKn8eHfa5nU73P9fOQAgwHFJx7zjg4lwOnljMO8g== -cypress@9.2.0: - version "9.2.0" - resolved "https://registry.yarnpkg.com/cypress/-/cypress-9.2.0.tgz#727c20b4662167890db81d5f6ba615231835b17d" - integrity sha512-Jn26Tprhfzh/a66Sdj9SoaYlnNX6Mjfmj5PHu2a7l3YHXhrgmavM368wjCmgrxC6KHTOv9SpMQGhAJn+upDViA== +cypress@9.2.1: + version "9.2.1" + resolved "https://registry.yarnpkg.com/cypress/-/cypress-9.2.1.tgz#47f2457e5ca7ede48be9a4176f20f30ccf3b3902" + integrity sha512-LVEe4yWCo4xO0Vd8iYjFHRyd5ulRvM56XqMgAdn05Qb9kJ6iJdO/MmjKD8gNd768698cp1FDuSmFQZHVZGk+Og== dependencies: "@cypress/request" "^2.88.10" "@cypress/xvfb" "^1.2.4" @@ -5233,7 +5227,7 @@ cypress@9.2.0: chalk "^4.1.0" check-more-types "^2.24.0" cli-cursor "^3.1.0" - cli-table3 "~0.6.0" + cli-table3 "~0.6.1" commander "^5.1.0" common-tags "^1.8.0" dayjs "^1.10.4" @@ -5752,16 +5746,16 @@ easy-bem@^1.0.2: resolved "https://registry.yarnpkg.com/easy-bem/-/easy-bem-1.1.1.tgz#1bfcc10425498090bcfddc0f9c000aba91399e03" integrity sha512-GJRqdiy2h+EXy6a8E6R+ubmqUM08BK0FWNq41k24fup6045biQ8NXxoXimiwegMQvFFV3t1emADdGNL1TlS61A== -easymde@2.15.0: - version "2.15.0" - resolved "https://registry.yarnpkg.com/easymde/-/easymde-2.15.0.tgz#73667c4879d8687b07651d6259ee652bba5d0b00" - integrity sha512-9jMRIVvKt1d0UjRN45yotUYECAM4xvw0TTAQw8sYDONP++keWJVnd8Xrn+V+vQEN/v9/X0SWEoo1rFSgCooGpw== +easymde@2.16.1: + version "2.16.1" + resolved "https://registry.yarnpkg.com/easymde/-/easymde-2.16.1.tgz#f4c2380312615cb33826f1a1fecfaa4022ff551a" + integrity sha512-FihYgjRsKfhGNk89SHSqxKLC4aJ1kfybPWW6iAmtb5GnXu+tnFPSzSaGBmk1RRlCuhFSjhF0SnIMGVPjEzkr6g== dependencies: - "@types/codemirror" "0.0.109" - "@types/marked" "^2.0.2" - codemirror "^5.61.0" + "@types/codemirror" "^5.60.4" + "@types/marked" "^4.0.1" + codemirror "^5.63.1" codemirror-spell-checker "1.1.2" - marked "^2.0.3" + marked "^4.0.10" ecc-jsbn@~0.1.1: version "0.1.2" @@ -5853,7 +5847,7 @@ end-of-stream@^1.0.0, end-of-stream@^1.1.0, end-of-stream@^1.4.1, end-of-stream@ dependencies: once "^1.4.0" -enquirer@^2.3.5, enquirer@^2.3.6: +enquirer@^2.3.6: version "2.3.6" resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== @@ -5944,199 +5938,199 @@ esbuild-android-arm64@0.13.15: resolved "https://registry.yarnpkg.com/esbuild-android-arm64/-/esbuild-android-arm64-0.13.15.tgz#3fc3ff0bab76fe35dd237476b5d2b32bb20a3d44" integrity sha512-m602nft/XXeO8YQPUDVoHfjyRVPdPgjyyXOxZ44MK/agewFFkPa8tUo6lAzSWh5Ui5PB4KR9UIFTSBKh/RrCmg== -esbuild-android-arm64@0.14.10: - version "0.14.10" - resolved "https://registry.yarnpkg.com/esbuild-android-arm64/-/esbuild-android-arm64-0.14.10.tgz#c854db57dc2d4df6f4f62185ca812f26a132bf1e" - integrity sha512-vzkTafHKoiMX4uIN1kBnE/HXYLpNT95EgGanVk6DHGeYgDolU0NBxjO7yZpq4ZGFPOx8384eAdDrBYhO11TAlQ== +esbuild-android-arm64@0.14.11: + version "0.14.11" + resolved "https://registry.yarnpkg.com/esbuild-android-arm64/-/esbuild-android-arm64-0.14.11.tgz#b8b34e35a5b43880664ac7a3fbc70243d7ed894f" + integrity sha512-6iHjgvMnC/SzDH8TefL+/3lgCjYWwAd1LixYfmz/TBPbDQlxcuSkX0yiQgcJB9k+ibZ54yjVXziIwGdlc+6WNw== esbuild-darwin-64@0.13.15: version "0.13.15" resolved "https://registry.yarnpkg.com/esbuild-darwin-64/-/esbuild-darwin-64-0.13.15.tgz#8e9169c16baf444eacec60d09b24d11b255a8e72" integrity sha512-ihOQRGs2yyp7t5bArCwnvn2Atr6X4axqPpEdCFPVp7iUj4cVSdisgvEKdNR7yH3JDjW6aQDw40iQFoTqejqxvQ== -esbuild-darwin-64@0.14.10: - version "0.14.10" - resolved "https://registry.yarnpkg.com/esbuild-darwin-64/-/esbuild-darwin-64-0.14.10.tgz#c44fab6b8bfc83e5d083f513e4acbff14fb82eac" - integrity sha512-DJwzFVB95ZV7C3PQbf052WqaUuuMFXJeZJ0LKdnP1w+QOU0rlbKfX0tzuhoS//rOXUj1TFIwRuRsd0FX6skR7A== +esbuild-darwin-64@0.14.11: + version "0.14.11" + resolved "https://registry.yarnpkg.com/esbuild-darwin-64/-/esbuild-darwin-64-0.14.11.tgz#ba805de98c0412e50fcd0636451797da157b0625" + integrity sha512-olq84ikh6TiBcrs3FnM4eR5VPPlcJcdW8BnUz/lNoEWYifYQ+Po5DuYV1oz1CTFMw4k6bQIZl8T3yxL+ZT2uvQ== esbuild-darwin-arm64@0.13.15: version "0.13.15" resolved "https://registry.yarnpkg.com/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.13.15.tgz#1b07f893b632114f805e188ddfca41b2b778229a" integrity sha512-i1FZssTVxUqNlJ6cBTj5YQj4imWy3m49RZRnHhLpefFIh0To05ow9DTrXROTE1urGTQCloFUXTX8QfGJy1P8dQ== -esbuild-darwin-arm64@0.14.10: - version "0.14.10" - resolved "https://registry.yarnpkg.com/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.10.tgz#9454b3763b36407dc395c4c3529fb5ddd4a6225f" - integrity sha512-RNaaoZDg3nsqs5z56vYCjk/VJ76npf752W0rOaCl5lO5TsgV9zecfdYgt7dtUrIx8b7APhVaNYud+tGsDOVC9g== +esbuild-darwin-arm64@0.14.11: + version "0.14.11" + resolved "https://registry.yarnpkg.com/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.11.tgz#4d3573e448af76ce33e16231f3d9f878542d6fe8" + integrity sha512-Jj0ieWLREPBYr/TZJrb2GFH8PVzDqiQWavo1pOFFShrcmHWDBDrlDxPzEZ67NF/Un3t6sNNmeI1TUS/fe1xARg== esbuild-freebsd-64@0.13.15: version "0.13.15" resolved "https://registry.yarnpkg.com/esbuild-freebsd-64/-/esbuild-freebsd-64-0.13.15.tgz#0b8b7eca1690c8ec94c75680c38c07269c1f4a85" integrity sha512-G3dLBXUI6lC6Z09/x+WtXBXbOYQZ0E8TDBqvn7aMaOCzryJs8LyVXKY4CPnHFXZAbSwkCbqiPuSQ1+HhrNk7EA== -esbuild-freebsd-64@0.14.10: - version "0.14.10" - resolved "https://registry.yarnpkg.com/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.10.tgz#04eef46d5d5e4152c6b5a6a12f432db0fe7c89de" - integrity sha512-10B3AzW894u6bGZZhWiJOHw1uEHb4AFbUuBdyml1Ht0vIqd+KqWW+iY/yMwQAzILr2WJZqEhbOXRkJtY8aRqOw== +esbuild-freebsd-64@0.14.11: + version "0.14.11" + resolved "https://registry.yarnpkg.com/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.11.tgz#9294e6ab359ec93590ab097b0f2017de7c78ab4d" + integrity sha512-C5sT3/XIztxxz/zwDjPRHyzj/NJFOnakAanXuyfLDwhwupKPd76/PPHHyJx6Po6NI6PomgVp/zi6GRB8PfrOTA== esbuild-freebsd-arm64@0.13.15: version "0.13.15" resolved "https://registry.yarnpkg.com/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.13.15.tgz#2e1a6c696bfdcd20a99578b76350b41db1934e52" integrity sha512-KJx0fzEDf1uhNOZQStV4ujg30WlnwqUASaGSFPhznLM/bbheu9HhqZ6mJJZM32lkyfGJikw0jg7v3S0oAvtvQQ== -esbuild-freebsd-arm64@0.14.10: - version "0.14.10" - resolved "https://registry.yarnpkg.com/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.10.tgz#67ca88529543ada948737c95819253ead16494a7" - integrity sha512-mSQrKB7UaWvuryBTCo9leOfY2uEUSimAvcKIaUWbk5Hth9Sg+Try+qNA/NibPgs/vHkX0KFo/Rce6RPea+P15g== +esbuild-freebsd-arm64@0.14.11: + version "0.14.11" + resolved "https://registry.yarnpkg.com/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.11.tgz#ae3e0b09173350b66cf8321583c9a1c1fcb8bb55" + integrity sha512-y3Llu4wbs0bk4cwjsdAtVOesXb6JkdfZDLKMt+v1U3tOEPBdSu6w8796VTksJgPfqvpX22JmPLClls0h5p+L9w== esbuild-linux-32@0.13.15: version "0.13.15" resolved "https://registry.yarnpkg.com/esbuild-linux-32/-/esbuild-linux-32-0.13.15.tgz#6fd39f36fc66dd45b6b5f515728c7bbebc342a69" integrity sha512-ZvTBPk0YWCLMCXiFmD5EUtB30zIPvC5Itxz0mdTu/xZBbbHJftQgLWY49wEPSn2T/TxahYCRDWun5smRa0Tu+g== -esbuild-linux-32@0.14.10: - version "0.14.10" - resolved "https://registry.yarnpkg.com/esbuild-linux-32/-/esbuild-linux-32-0.14.10.tgz#8f3d5fb0b9b616d6b604da781d71767d7679f64f" - integrity sha512-lktF09JgJLZ63ANYHIPdYe339PDuVn19Q/FcGKkXWf+jSPkn5xkYzAabboNGZNUgNqSJ/vY7VrOn6UrBbJjgYA== +esbuild-linux-32@0.14.11: + version "0.14.11" + resolved "https://registry.yarnpkg.com/esbuild-linux-32/-/esbuild-linux-32-0.14.11.tgz#ddadbc7038aa5a6b1675bb1503cf79a0cbf1229a" + integrity sha512-Cg3nVsxArjyLke9EuwictFF3Sva+UlDTwHIuIyx8qpxRYAOUTmxr2LzYrhHyTcGOleLGXUXYsnUVwKqnKAgkcg== esbuild-linux-64@0.13.15: version "0.13.15" resolved "https://registry.yarnpkg.com/esbuild-linux-64/-/esbuild-linux-64-0.13.15.tgz#9cb8e4bcd7574e67946e4ee5f1f1e12386bb6dd3" integrity sha512-eCKzkNSLywNeQTRBxJRQ0jxRCl2YWdMB3+PkWFo2BBQYC5mISLIVIjThNtn6HUNqua1pnvgP5xX0nHbZbPj5oA== -esbuild-linux-64@0.14.10: - version "0.14.10" - resolved "https://registry.yarnpkg.com/esbuild-linux-64/-/esbuild-linux-64-0.14.10.tgz#c1c60a079c4709164bdd89fbb007a2edeea7c34a" - integrity sha512-K+gCQz2oLIIBI8ZM77e9sYD5/DwEpeYCrOQ2SYXx+R4OU2CT9QjJDi4/OpE7ko4AcYMlMW7qrOCuLSgAlEj4Wg== +esbuild-linux-64@0.14.11: + version "0.14.11" + resolved "https://registry.yarnpkg.com/esbuild-linux-64/-/esbuild-linux-64-0.14.11.tgz#d698e3ce3a231ddfeec6b5df8c546ae8883fcd88" + integrity sha512-oeR6dIrrojr8DKVrxtH3xl4eencmjsgI6kPkDCRIIFwv4p+K7ySviM85K66BN01oLjzthpUMvBVfWSJkBLeRbg== esbuild-linux-arm64@0.13.15: version "0.13.15" resolved "https://registry.yarnpkg.com/esbuild-linux-arm64/-/esbuild-linux-arm64-0.13.15.tgz#3891aa3704ec579a1b92d2a586122e5b6a2bfba1" integrity sha512-bYpuUlN6qYU9slzr/ltyLTR9YTBS7qUDymO8SV7kjeNext61OdmqFAzuVZom+OLW1HPHseBfJ/JfdSlx8oTUoA== -esbuild-linux-arm64@0.14.10: - version "0.14.10" - resolved "https://registry.yarnpkg.com/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.10.tgz#d8f1f89190f6d8b6e06a1214aafba454e5daa990" - integrity sha512-+qocQuQvcp5wo/V+OLXxqHPc+gxHttJEvbU/xrCGE03vIMqraL4wMua8JQx0SWEnJCWP+Nhf//v8OSwz1Xr5kA== +esbuild-linux-arm64@0.14.11: + version "0.14.11" + resolved "https://registry.yarnpkg.com/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.11.tgz#85faea9fa99ad355b5e3b283197a4dfd0a110fe7" + integrity sha512-+e6ZCgTFQYZlmg2OqLkg1jHLYtkNDksxWDBWNtI4XG4WxuOCUErLqfEt9qWjvzK3XBcCzHImrajkUjO+rRkbMg== esbuild-linux-arm@0.13.15: version "0.13.15" resolved "https://registry.yarnpkg.com/esbuild-linux-arm/-/esbuild-linux-arm-0.13.15.tgz#8a00e99e6a0c6c9a6b7f334841364d8a2b4aecfe" integrity sha512-wUHttDi/ol0tD8ZgUMDH8Ef7IbDX+/UsWJOXaAyTdkT7Yy9ZBqPg8bgB/Dn3CZ9SBpNieozrPRHm0BGww7W/jA== -esbuild-linux-arm@0.14.10: - version "0.14.10" - resolved "https://registry.yarnpkg.com/esbuild-linux-arm/-/esbuild-linux-arm-0.14.10.tgz#43192a00019a4553fb44e67f628fff0f560f16c2" - integrity sha512-BYa60dZ/KPmNKYxtHa3LSEdfKWHcm/RzP0MjB4AeBPhjS0D6/okhaBesZIY9kVIGDyeenKsJNOmnVt4+dhNnvQ== +esbuild-linux-arm@0.14.11: + version "0.14.11" + resolved "https://registry.yarnpkg.com/esbuild-linux-arm/-/esbuild-linux-arm-0.14.11.tgz#74cbcf0b8a22c8401bcbcd6ebd4cbf2baca8b7b4" + integrity sha512-vcwskfD9g0tojux/ZaTJptJQU3a7YgTYsptK1y6LQ/rJmw7U5QJvboNawqM98Ca3ToYEucfCRGbl66OTNtp6KQ== esbuild-linux-mips64le@0.13.15: version "0.13.15" resolved "https://registry.yarnpkg.com/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.13.15.tgz#36b07cc47c3d21e48db3bb1f4d9ef8f46aead4f7" integrity sha512-KlVjIG828uFPyJkO/8gKwy9RbXhCEUeFsCGOJBepUlpa7G8/SeZgncUEz/tOOUJTcWMTmFMtdd3GElGyAtbSWg== -esbuild-linux-mips64le@0.14.10: - version "0.14.10" - resolved "https://registry.yarnpkg.com/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.10.tgz#f57bb8b2f1a3063cc91cfd787c8a9130cf863c16" - integrity sha512-nmUd2xoBXpGo4NJCEWoaBj+n4EtDoLEvEYc8Z3aSJrY0Oa6s04czD1flmhd0I/d6QEU8b7GQ9U0g/rtBfhtxBg== +esbuild-linux-mips64le@0.14.11: + version "0.14.11" + resolved "https://registry.yarnpkg.com/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.11.tgz#490429211a3233f5cbbd8575b7758b897e42979a" + integrity sha512-Rrs99L+p54vepmXIb87xTG6ukrQv+CzrM8eoeR+r/OFL2Rg8RlyEtCeshXJ2+Q66MXZOgPJaokXJZb9snq28bw== esbuild-linux-ppc64le@0.13.15: version "0.13.15" resolved "https://registry.yarnpkg.com/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.13.15.tgz#f7e6bba40b9a11eb9dcae5b01550ea04670edad2" integrity sha512-h6gYF+OsaqEuBjeesTBtUPw0bmiDu7eAeuc2OEH9S6mV9/jPhPdhOWzdeshb0BskRZxPhxPOjqZ+/OqLcxQwEQ== -esbuild-linux-ppc64le@0.14.10: - version "0.14.10" - resolved "https://registry.yarnpkg.com/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.10.tgz#becd965bfe3425d41e026f1c4678b393127fecbd" - integrity sha512-vsOWZjm0rZix7HSmqwPph9arRVCyPtUpcURdayQDuIhMG2/UxJxpbdRaa//w4zYqcJzAWwuyH2PAlyy0ZNuxqQ== +esbuild-linux-ppc64le@0.14.11: + version "0.14.11" + resolved "https://registry.yarnpkg.com/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.11.tgz#fc79d60710213b5b98345f5b138d48245616827a" + integrity sha512-JyzziGAI0D30Vyzt0HDihp4s1IUtJ3ssV2zx9O/c+U/dhUHVP2TmlYjzCfCr2Q6mwXTeloDcLS4qkyvJtYptdQ== -esbuild-linux-s390x@0.14.10: - version "0.14.10" - resolved "https://registry.yarnpkg.com/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.10.tgz#cc4228ac842febc48b84757814bed964a619be62" - integrity sha512-knArKKZm0ypIYWOWyOT7+accVwbVV1LZnl2FWWy05u9Tyv5oqJ2F5+X2Vqe/gqd61enJXQWqoufXopvG3zULOg== +esbuild-linux-s390x@0.14.11: + version "0.14.11" + resolved "https://registry.yarnpkg.com/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.11.tgz#ca4b93556bbba6cc95b0644f2ee93c982165ba07" + integrity sha512-DoThrkzunZ1nfRGoDN6REwmo8ZZWHd2ztniPVIR5RMw/Il9wiWEYBahb8jnMzQaSOxBsGp0PbyJeVLTUatnlcw== esbuild-netbsd-64@0.13.15: version "0.13.15" resolved "https://registry.yarnpkg.com/esbuild-netbsd-64/-/esbuild-netbsd-64-0.13.15.tgz#a2fedc549c2b629d580a732d840712b08d440038" integrity sha512-3+yE9emwoevLMyvu+iR3rsa+Xwhie7ZEHMGDQ6dkqP/ndFzRHkobHUKTe+NCApSqG5ce2z4rFu+NX/UHnxlh3w== -esbuild-netbsd-64@0.14.10: - version "0.14.10" - resolved "https://registry.yarnpkg.com/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.10.tgz#6ec50d9e4547a7579f447307b19f66bbedfd868b" - integrity sha512-6Gg8neVcLeyq0yt9bZpReb8ntZ8LBEjthxrcYWVrBElcltnDjIy1hrzsujt0+sC2rL+TlSsE9dzgyuvlDdPp2w== +esbuild-netbsd-64@0.14.11: + version "0.14.11" + resolved "https://registry.yarnpkg.com/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.11.tgz#edb340bc6653c88804cac2253e21b74258fce165" + integrity sha512-12luoRQz+6eihKYh1zjrw0CBa2aw3twIiHV/FAfjh2NEBDgJQOY4WCEUEN+Rgon7xmLh4XUxCQjnwrvf8zhACw== esbuild-openbsd-64@0.13.15: version "0.13.15" resolved "https://registry.yarnpkg.com/esbuild-openbsd-64/-/esbuild-openbsd-64-0.13.15.tgz#b22c0e5806d3a1fbf0325872037f885306b05cd7" integrity sha512-wTfvtwYJYAFL1fSs8yHIdf5GEE4NkbtbXtjLWjM3Cw8mmQKqsg8kTiqJ9NJQe5NX/5Qlo7Xd9r1yKMMkHllp5g== -esbuild-openbsd-64@0.14.10: - version "0.14.10" - resolved "https://registry.yarnpkg.com/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.10.tgz#925ac3d2326cc219d514e1ca806e80e5143aa043" - integrity sha512-9rkHZzp10zI90CfKbFrwmQjqZaeDmyQ6s9/hvCwRkbOCHuto6RvMYH9ghQpcr5cUxD5OQIA+sHXi0zokRNXjcg== +esbuild-openbsd-64@0.14.11: + version "0.14.11" + resolved "https://registry.yarnpkg.com/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.11.tgz#caeff5f946f79a60ce7bcf88871ca4c71d3476e8" + integrity sha512-l18TZDjmvwW6cDeR4fmizNoxndyDHamGOOAenwI4SOJbzlJmwfr0jUgjbaXCUuYVOA964siw+Ix+A+bhALWg8Q== esbuild-sunos-64@0.13.15: version "0.13.15" resolved "https://registry.yarnpkg.com/esbuild-sunos-64/-/esbuild-sunos-64-0.13.15.tgz#d0b6454a88375ee8d3964daeff55c85c91c7cef4" integrity sha512-lbivT9Bx3t1iWWrSnGyBP9ODriEvWDRiweAs69vI+miJoeKwHWOComSRukttbuzjZ8r1q0mQJ8Z7yUsDJ3hKdw== -esbuild-sunos-64@0.14.10: - version "0.14.10" - resolved "https://registry.yarnpkg.com/esbuild-sunos-64/-/esbuild-sunos-64-0.14.10.tgz#8d3576d8cac5c4f9f2a84be81b9078d424dbc739" - integrity sha512-mEU+pqkhkhbwpJj5DiN3vL0GUFR/yrL3qj8ER1amIVyRibKbj02VM1QaIuk1sy5DRVIKiFXXgCaHvH3RNWCHIw== +esbuild-sunos-64@0.14.11: + version "0.14.11" + resolved "https://registry.yarnpkg.com/esbuild-sunos-64/-/esbuild-sunos-64-0.14.11.tgz#90ce7e1749c2958a53509b4bae7b8f7d98f276d6" + integrity sha512-bmYzDtwASBB8c+0/HVOAiE9diR7+8zLm/i3kEojUH2z0aIs6x/S4KiTuT5/0VKJ4zk69kXel1cNWlHBMkmavQg== esbuild-windows-32@0.13.15: version "0.13.15" resolved "https://registry.yarnpkg.com/esbuild-windows-32/-/esbuild-windows-32-0.13.15.tgz#c96d0b9bbb52f3303322582ef8e4847c5ad375a7" integrity sha512-fDMEf2g3SsJ599MBr50cY5ve5lP1wyVwTe6aLJsM01KtxyKkB4UT+fc5MXQFn3RLrAIAZOG+tHC+yXObpSn7Nw== -esbuild-windows-32@0.14.10: - version "0.14.10" - resolved "https://registry.yarnpkg.com/esbuild-windows-32/-/esbuild-windows-32-0.14.10.tgz#8a67fca4cb594a340566d66eef3f568f65057a48" - integrity sha512-Z5DieUL1N6s78dOSdL95KWf8Y89RtPGxIoMF+LEy8ChDsX+pZpz6uAVCn+YaWpqQXO+2TnrcbgBIoprq2Mco1g== +esbuild-windows-32@0.14.11: + version "0.14.11" + resolved "https://registry.yarnpkg.com/esbuild-windows-32/-/esbuild-windows-32-0.14.11.tgz#d067f4ce15b29efba6336e6a23597120fafe49ec" + integrity sha512-J1Ys5hMid8QgdY00OBvIolXgCQn1ARhYtxPnG6ESWNTty3ashtc4+As5nTrsErnv8ZGUcWZe4WzTP/DmEVX1UQ== esbuild-windows-64@0.13.15: version "0.13.15" resolved "https://registry.yarnpkg.com/esbuild-windows-64/-/esbuild-windows-64-0.13.15.tgz#1f79cb9b1e1bb02fb25cd414cb90d4ea2892c294" integrity sha512-9aMsPRGDWCd3bGjUIKG/ZOJPKsiztlxl/Q3C1XDswO6eNX/Jtwu4M+jb6YDH9hRSUflQWX0XKAfWzgy5Wk54JQ== -esbuild-windows-64@0.14.10: - version "0.14.10" - resolved "https://registry.yarnpkg.com/esbuild-windows-64/-/esbuild-windows-64-0.14.10.tgz#5e6d7c475ff6a71ad0aa4046894364e6c40a9249" - integrity sha512-LE5Mm62y0Bilu7RDryBhHIX8rK3at5VwJ6IGM3BsASidCfOBTzqcs7Yy0/Vkq39VKeTmy9/66BAfVoZRNznoDw== +esbuild-windows-64@0.14.11: + version "0.14.11" + resolved "https://registry.yarnpkg.com/esbuild-windows-64/-/esbuild-windows-64-0.14.11.tgz#13e86dd37a6cd61a5276fa2d271342d0f74da864" + integrity sha512-h9FmMskMuGeN/9G9+LlHPAoiQk9jlKDUn9yA0MpiGzwLa82E7r1b1u+h2a+InprbSnSLxDq/7p5YGtYVO85Mlg== esbuild-windows-arm64@0.13.15: version "0.13.15" resolved "https://registry.yarnpkg.com/esbuild-windows-arm64/-/esbuild-windows-arm64-0.13.15.tgz#482173070810df22a752c686509c370c3be3b3c3" integrity sha512-zzvyCVVpbwQQATaf3IG8mu1IwGEiDxKkYUdA4FpoCHi1KtPa13jeScYDjlW0Qh+ebWzpKfR2ZwvqAQkSWNcKjA== -esbuild-windows-arm64@0.14.10: - version "0.14.10" - resolved "https://registry.yarnpkg.com/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.10.tgz#50ab9a83f6ccf71c272e58489ecc4d7375075f32" - integrity sha512-OJOyxDtabvcUYTc+O4dR0JMzLBz6G9+gXIHA7Oc5d5Fv1xiYa0nUeo8+W5s2e6ZkPRdIwOseYoL70rZz80S5BA== +esbuild-windows-arm64@0.14.11: + version "0.14.11" + resolved "https://registry.yarnpkg.com/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.11.tgz#e8edfdf1d712085e6dc3fba18a0c225aaae32b75" + integrity sha512-dZp7Krv13KpwKklt9/1vBFBMqxEQIO6ri7Azf8C+ob4zOegpJmha2XY9VVWP/OyQ0OWk6cEeIzMJwInRZrzBUQ== -esbuild@0.14.10: - version "0.14.10" - resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.14.10.tgz#10268d2b576b25ed6f8554553413988628a7767b" - integrity sha512-ibZb+NwFqBwHHJlpnFMtg4aNmVK+LUtYMFC9CuKs6lDCBEvCHpqCFZFEirpqt1jOugwKGx8gALNGvX56lQyfew== +esbuild@0.14.11: + version "0.14.11" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.14.11.tgz#ac4acb78907874832afb704c3afe58ad37715c27" + integrity sha512-xZvPtVj6yecnDeFb3KjjCM6i7B5TCAQZT77kkW/CpXTMnd6VLnRPKrUB1XHI1pSq6a4Zcy3BGueQ8VljqjDGCg== optionalDependencies: - esbuild-android-arm64 "0.14.10" - esbuild-darwin-64 "0.14.10" - esbuild-darwin-arm64 "0.14.10" - esbuild-freebsd-64 "0.14.10" - esbuild-freebsd-arm64 "0.14.10" - esbuild-linux-32 "0.14.10" - esbuild-linux-64 "0.14.10" - esbuild-linux-arm "0.14.10" - esbuild-linux-arm64 "0.14.10" - esbuild-linux-mips64le "0.14.10" - esbuild-linux-ppc64le "0.14.10" - esbuild-linux-s390x "0.14.10" - esbuild-netbsd-64 "0.14.10" - esbuild-openbsd-64 "0.14.10" - esbuild-sunos-64 "0.14.10" - esbuild-windows-32 "0.14.10" - esbuild-windows-64 "0.14.10" - esbuild-windows-arm64 "0.14.10" + esbuild-android-arm64 "0.14.11" + esbuild-darwin-64 "0.14.11" + esbuild-darwin-arm64 "0.14.11" + esbuild-freebsd-64 "0.14.11" + esbuild-freebsd-arm64 "0.14.11" + esbuild-linux-32 "0.14.11" + esbuild-linux-64 "0.14.11" + esbuild-linux-arm "0.14.11" + esbuild-linux-arm64 "0.14.11" + esbuild-linux-mips64le "0.14.11" + esbuild-linux-ppc64le "0.14.11" + esbuild-linux-s390x "0.14.11" + esbuild-netbsd-64 "0.14.11" + esbuild-openbsd-64 "0.14.11" + esbuild-sunos-64 "0.14.11" + esbuild-windows-32 "0.14.11" + esbuild-windows-64 "0.14.11" + esbuild-windows-arm64 "0.14.11" esbuild@^0.13.12: version "0.13.15" @@ -6203,10 +6197,10 @@ escodegen@^2.0.0: optionalDependencies: source-map "~0.6.1" -eslint-plugin-vue@8.2.0: - version "8.2.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-8.2.0.tgz#b404bc10e3f43b2b7aad4ebb3b38090a58040202" - integrity sha512-cLIdTuOAMXyHeQ4drYKcZfoyzdwdBpH279X8/N0DgmotEI9yFKb5O/cAgoie/CkQZCH/MOmh0xw/KEfS90zY2A== +eslint-plugin-vue@8.3.0: + version "8.3.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-8.3.0.tgz#2ae4f915ed3541a58c4a4c1145c1e60b86aa7e85" + integrity sha512-IIuLHw4vQxGlHcoP2dG6t/2OVdQf2qoyAzEGAxreU1afZOHGA7y3TWq8I+r3ZA6Wjs6xpeUWGHlT31QGr9Rb5g== dependencies: eslint-utils "^3.0.0" natural-compare "^1.4.0" @@ -6259,10 +6253,15 @@ eslint-visitor-keys@^3.1.0: resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.1.0.tgz#eee4acea891814cda67a7d8812d9647dd0179af2" integrity sha512-yWJFpu4DtjsWKkt5GeNBBuZMlNcYVs6vRCLoCVEJrTjaSB6LC98gFipNK/erM2Heg/E8mIK+hXG/pJMLK+eRZA== -eslint@8.6.0: - version "8.6.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.6.0.tgz#4318c6a31c5584838c1a2e940c478190f58d558e" - integrity sha512-UvxdOJ7mXFlw7iuHZA4jmzPaUqIw54mZrv+XPYKNbKdLR0et4rf60lIZUU9kiNtnzzMzGWxMV+tQ7uG7JG8DPw== +eslint-visitor-keys@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.2.0.tgz#6fbb166a6798ee5991358bc2daa1ba76cc1254a1" + integrity sha512-IOzT0X126zn7ALX0dwFiUQEdsfzrm4+ISsQS8nukaJXwEyYKRSnEIIDULYg1mCtGp7UUXgfGl7BIolXREQK+XQ== + +eslint@8.7.0: + version "8.7.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.7.0.tgz#22e036842ee5b7cf87b03fe237731675b4d3633c" + integrity sha512-ifHYzkBGrzS2iDU7KjhCAVMGCvF6M3Xfs8X8b37cgrUlDt6bWRTpRh6T/gtSXv1HJ/BUGgmjvNvOEGu85Iif7w== dependencies: "@eslint/eslintrc" "^1.0.5" "@humanwhocodes/config-array" "^0.9.2" @@ -6271,11 +6270,10 @@ eslint@8.6.0: cross-spawn "^7.0.2" debug "^4.3.2" doctrine "^3.0.0" - enquirer "^2.3.5" escape-string-regexp "^4.0.0" eslint-scope "^7.1.0" eslint-utils "^3.0.0" - eslint-visitor-keys "^3.1.0" + eslint-visitor-keys "^3.2.0" espree "^9.3.0" esquery "^1.4.0" esutils "^2.0.2" @@ -6284,7 +6282,7 @@ eslint@8.6.0: functional-red-black-tree "^1.0.1" glob-parent "^6.0.1" globals "^13.6.0" - ignore "^4.0.6" + ignore "^5.2.0" import-fresh "^3.0.0" imurmurhash "^0.1.4" is-glob "^4.0.0" @@ -6295,9 +6293,7 @@ eslint@8.6.0: minimatch "^3.0.4" natural-compare "^1.4.0" optionator "^0.9.1" - progress "^2.0.0" regexpp "^3.2.0" - semver "^7.2.1" strip-ansi "^6.0.1" strip-json-comments "^3.1.0" text-table "^0.2.0" @@ -7373,10 +7369,10 @@ graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4: resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.6.tgz#ff040b2b0853b23c3d31027523706f1885d76bee" integrity sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ== -happy-dom@2.25.1: - version "2.25.1" - resolved "https://registry.yarnpkg.com/happy-dom/-/happy-dom-2.25.1.tgz#5b02d02bc3708909315d69600e9c13cdc36e0279" - integrity sha512-HGNjJ0rROjpRvGUaZ9exj9hbR2rTeKJyhswmr+YhRr/jQuYmXdokq0oHVUkqo2AkJRnF/8FEWDENdrLorib8lA== +happy-dom@2.25.2: + version "2.25.2" + resolved "https://registry.yarnpkg.com/happy-dom/-/happy-dom-2.25.2.tgz#a8362ac5141c346a2db0c3ef22baa2bf6d9e342f" + integrity sha512-PEKxqE7v04J3t6hESxmWwbeimJSNpw+10OyG2dqA8uUsm35xqM2fL0KoppQHC2BRuPKy43rmH+ZHEXMuGz3XEQ== dependencies: he "^1.1.1" node-fetch "^2.6.1" @@ -7695,6 +7691,11 @@ ignore@^5.1.4, ignore@^5.1.8: resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57" integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw== +ignore@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a" + integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ== + immutable@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/immutable/-/immutable-4.0.0.tgz#b86f78de6adef3608395efb269a91462797e2c23" @@ -8253,7 +8254,7 @@ is-wsl@^1.1.0: resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0= -is-wsl@^2.1.1, is-wsl@^2.2.0: +is-wsl@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== @@ -8897,7 +8898,7 @@ make-dir@^2.1.0: pify "^4.0.1" semver "^5.6.0" -make-dir@^3.0.0, make-dir@^3.0.2, make-dir@^3.1.0: +make-dir@^3.0.0, make-dir@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== @@ -8936,15 +8937,10 @@ map-visit@^1.0.0: dependencies: object-visit "^1.0.0" -marked@4.0.9: - version "4.0.9" - resolved "https://registry.yarnpkg.com/marked/-/marked-4.0.9.tgz#96862d67bd31b4770917f01c93e1d9b3cc73ed96" - integrity sha512-HmoFvQwFLxNESeGupeOC+6CLb5WzcCWQmqvVetsErmrI3vrZ6gBumty5IP0ynLPR0zYSoVY7ITC1GffsYIGkog== - -marked@^2.0.3: - version "2.1.3" - resolved "https://registry.yarnpkg.com/marked/-/marked-2.1.3.tgz#bd017cef6431724fd4b27e0657f5ceb14bff3753" - integrity sha512-/Q+7MGzaETqifOMWYEA7HVMaZb4XbcRfaOzcSsHZEith83KGlvaSG33u0SKu89Mj5h+T8V2hM+8O45Qc5XTgwA== +marked@4.0.10, marked@^4.0.10: + version "4.0.10" + resolved "https://registry.yarnpkg.com/marked/-/marked-4.0.10.tgz#423e295385cc0c3a70fa495e0df68b007b879423" + integrity sha512-+QvuFj0nGgO970fySghXGmuw+Fd0gD2x3+MqCWLIPf5oxdv1Ka6b2q+z9RP01P/IaKPMEramy+7cNy/Lw8c3hw== maxstache-stream@^1.0.0: version "1.0.4" @@ -9254,11 +9250,6 @@ nanocolors@^0.1.5: resolved "https://registry.yarnpkg.com/nanocolors/-/nanocolors-0.1.12.tgz#8577482c58cbd7b5bb1681db4cf48f11a87fd5f6" integrity sha512-2nMHqg1x5PU+unxX7PGY7AuYxl2qDx7PSrTRjizr8sxdd3l/3hBuWWaki62qmtYm2U5i4Z5E7GbjlyDFhs9/EQ== -nanoid@^3.1.22: - version "3.1.23" - resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.23.tgz#f744086ce7c2bc47ee0a8472574d5c78e4183a81" - integrity sha512-FiB0kzdP0FFVGDKlRLEQ1BgDzU87dy5NnzjeW9YZNt+/c3+q82EQDUwniSAUxp/F0gFNI1ZhKU1FqYsMuqZVnw== - nanoid@^3.1.25: version "3.1.25" resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.25.tgz#09ca32747c0e543f0e1814b7d3793477f9c8e152" @@ -9269,6 +9260,11 @@ nanoid@^3.1.30: resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.30.tgz#63f93cc548d2a113dc5dfbc63bfa09e2b9b64362" integrity sha512-zJpuPDwOv8D2zq2WRoMe1HsfZthVewpel9CAvTfc/2mBD1uUT/agc5f7GHGWXlYkFvi1mVxe4IjvP2HNrop7nQ== +nanoid@^3.1.32: + version "3.1.32" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.32.tgz#8f96069e6239cc0a9ae8c0d3b41a3b4933a88c0a" + integrity sha512-F8mf7R3iT9bvThBoW4tGXhXFHCctyCiUUPrWF8WaTqa3h96d9QybkSeba43XVOOE3oiLfkVDe4bT8MeGmkrTxw== + nanomatch@^1.2.9: version "1.2.13" resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" @@ -9310,17 +9306,17 @@ nested-error-stacks@^2.0.0, nested-error-stacks@^2.1.0: resolved "https://registry.yarnpkg.com/nested-error-stacks/-/nested-error-stacks-2.1.0.tgz#0fbdcf3e13fe4994781280524f8b96b0cdff9c61" integrity sha512-AO81vsIO1k1sM4Zrd6Hu7regmJN1NSiAja10gc4bX3F0wd+9rQmcuHQaHVQCYIEC8iFXnE+mavh23GOt7wBgug== -netlify-cli@8.6.15: - version "8.6.15" - resolved "https://registry.yarnpkg.com/netlify-cli/-/netlify-cli-8.6.15.tgz#43298ff2586504841ced2a409221f7b27c6f6059" - integrity sha512-pqM8dOQscGVF4zVB4zzCBBnJlaNtu9SdWfoyHMfD0ZKF8XZTS/vT+N/3apRNBjZYSyExhdpe/7pW5o5L5IawCQ== +netlify-cli@8.8.2: + version "8.8.2" + resolved "https://registry.yarnpkg.com/netlify-cli/-/netlify-cli-8.8.2.tgz#b4e16541a0430b9e6a07b2bbccde9a2aa8ffe7b0" + integrity sha512-Jw+VrDtp4/vSws87TnXbxIArWAaAPkLdh+OMbXirYSZKC3f21NcBya3VMC+Kag6ju7S87X/6eoDQe0v+ca/rgQ== dependencies: - "@netlify/build" "^26.1.0" + "@netlify/build" "^26.1.3" "@netlify/config" "^17.0.3" - "@netlify/framework-info" "^7.0.0" + "@netlify/framework-info" "^8.0.1" "@netlify/local-functions-proxy" "^1.1.1" - "@netlify/plugin-edge-handlers" "^3.0.0" - "@netlify/plugins-list" "^6.2.0" + "@netlify/plugin-edge-handlers" "^3.0.3" + "@netlify/plugins-list" "^6.2.1" "@netlify/routing-local-proxy" "^0.34.1" "@netlify/zip-it-and-ship-it" "5.4.0" "@octokit/rest" "^18.0.0" @@ -9765,15 +9761,7 @@ onetime@^5.1.0, onetime@^5.1.2: dependencies: mimic-fn "^2.1.0" -open@^7.4.2: - version "7.4.2" - resolved "https://registry.yarnpkg.com/open/-/open-7.4.2.tgz#b8147e26dcf3e426316c730089fd71edd29c2321" - integrity sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q== - dependencies: - is-docker "^2.0.0" - is-wsl "^2.1.1" - -open@^8.0.4: +open@^8.0.4, open@^8.4.0: version "8.4.0" resolved "https://registry.yarnpkg.com/open/-/open-8.4.0.tgz#345321ae18f8138f82565a910fdc6b39e8c244f8" integrity sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q== @@ -10198,10 +10186,10 @@ postcss-color-hex-alpha@^8.0.2: dependencies: postcss-value-parser "^4.2.0" -postcss-color-rebeccapurple@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-7.0.1.tgz#59a9f5493dd7912079eac2aaeebccb076a6abdf8" - integrity sha512-uA5MAOoCwCK32VgYXWwPD3vBDDOi1oMOkLnO+U1Af6ex7JOE0xHVJqnc9w5QS+fPJ9yveXeHKVtdVqzP2WiCsQ== +postcss-color-rebeccapurple@^7.0.2: + version "7.0.2" + resolved "https://registry.yarnpkg.com/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-7.0.2.tgz#5d397039424a58a9ca628762eb0b88a61a66e079" + integrity sha512-SFc3MaocHaQ6k3oZaFwH8io6MdypkUtEy/eXzXEB1vEQlO3S3oDc/FSZA8AsS04Z25RirQhlDlHLh3dn7XewWw== dependencies: postcss-value-parser "^4.2.0" @@ -10210,10 +10198,10 @@ postcss-custom-media@^8.0.0: resolved "https://registry.yarnpkg.com/postcss-custom-media/-/postcss-custom-media-8.0.0.tgz#1be6aff8be7dc9bf1fe014bde3b71b92bb4552f1" integrity sha512-FvO2GzMUaTN0t1fBULDeIvxr5IvbDXcIatt6pnJghc736nqNgsGao5NT+5+WVLAQiTt6Cb3YUms0jiPaXhL//g== -postcss-custom-properties@^12.0.2: - version "12.0.2" - resolved "https://registry.yarnpkg.com/postcss-custom-properties/-/postcss-custom-properties-12.0.2.tgz#62a9bff57f22b21266329752a6eb97b5896ad095" - integrity sha512-dpeF9PFr9gGmVxjYNBC35jvBwkga7jIfKLUVUsdiCaZWwiugS6c+hsf8x+NJ0OcvjXVTluqm50jLw7qRzP54vQ== +postcss-custom-properties@^12.1.2: + version "12.1.2" + resolved "https://registry.yarnpkg.com/postcss-custom-properties/-/postcss-custom-properties-12.1.2.tgz#066ecdb03779178ad60b8153755e79a2e70d17a9" + integrity sha512-Zvd+k66PHBYYPiXtdjNVx2l54Y9kQC7K1eUHzBND97RW/ayNxfaPOW+9NL3r0nsVbX1asPLdkDj585Wg0NBJCA== dependencies: postcss-value-parser "^4.2.0" @@ -10224,10 +10212,10 @@ postcss-custom-selectors@^6.0.0: dependencies: postcss-selector-parser "^6.0.4" -postcss-dir-pseudo-class@^6.0.2: - version "6.0.2" - resolved "https://registry.yarnpkg.com/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.2.tgz#ba93f17f1a3ba27e79db9d66bbc4bbd3aa902796" - integrity sha512-0X8kO0ICu+iuaQlXy8K9PBK1dpGpaMTqJ5P9BhEz/I9bMj0jD2/NeMpfYOeMnxhqgUfSjdZYXVWzucVtW3xvtg== +postcss-dir-pseudo-class@^6.0.3: + version "6.0.3" + resolved "https://registry.yarnpkg.com/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.3.tgz#febfe305e75267913a53bf5094c7679f5cfa9b55" + integrity sha512-qiPm+CNAlgXiMf0J5IbBBEXA9l/Q5HGsNGkL3znIwT2ZFRLGY9U2fTUpa4lqCUXQOxaLimpacHeQC80BD2qbDw== dependencies: postcss-selector-parser "^6.0.8" @@ -10288,20 +10276,20 @@ postcss-lab-function@^4.0.3: dependencies: postcss-value-parser "^4.2.0" -postcss-logical@^5.0.2: - version "5.0.2" - resolved "https://registry.yarnpkg.com/postcss-logical/-/postcss-logical-5.0.2.tgz#a7e66c8e9880c1ac98177f5a2d6353affcb59172" - integrity sha512-gmhdJ5ZWYAqAI06kzhpKC3E4UddBc1dlQKi3HHYbVHTvgr8CQJW9O+SLdihrEYZ8LsqVqFe0av8RC8HcFF8ghQ== +postcss-logical@^5.0.3: + version "5.0.3" + resolved "https://registry.yarnpkg.com/postcss-logical/-/postcss-logical-5.0.3.tgz#9934e0fb16af70adbd94217b24d2f315ceb5c2f0" + integrity sha512-P5NcHWYrif0vK8rgOy/T87vg0WRIj3HSknrvp1wzDbiBeoDPVmiVRmkown2eSQdpPveat/MC1ess5uhzZFVnqQ== postcss-media-minmax@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/postcss-media-minmax/-/postcss-media-minmax-5.0.0.tgz#7140bddec173e2d6d657edbd8554a55794e2a5b5" integrity sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ== -postcss-nesting@^10.1.1: - version "10.1.1" - resolved "https://registry.yarnpkg.com/postcss-nesting/-/postcss-nesting-10.1.1.tgz#d5574e69f66b9f44f73143ce1e161d32b917df87" - integrity sha512-Hs1pziyg47PBphISBWsCuSDeyNrk8xItFvT2r8F4L35Mcq0uQmz1yt+o/oq6oYkVAUlXadRXf4qH97wLKKznbA== +postcss-nesting@^10.1.2: + version "10.1.2" + resolved "https://registry.yarnpkg.com/postcss-nesting/-/postcss-nesting-10.1.2.tgz#2e5f811b3d75602ea18a95dd445bde5297145141" + integrity sha512-dJGmgmsvpzKoVMtDMQQG/T6FSqs6kDtUDirIfl4KnjMCiY9/ETX8jdKyCd20swSRAbUYkaBKV20pxkzxoOXLqQ== dependencies: postcss-selector-parser "^6.0.8" @@ -10322,26 +10310,26 @@ postcss-place@^7.0.3: dependencies: postcss-value-parser "^4.2.0" -postcss-preset-env@7.2.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/postcss-preset-env/-/postcss-preset-env-7.2.0.tgz#5cec14807f2663667f674f436e4e39359e9d6616" - integrity sha512-OO8RDLrx3iPnXx8YlGgWJHwLel/NQfgJFx4dONfM2dpFJfmIKrAHhpWCtqHIaIPPPEVkGKIhzPZlT3m+xT0GKA== +postcss-preset-env@7.2.3: + version "7.2.3" + resolved "https://registry.yarnpkg.com/postcss-preset-env/-/postcss-preset-env-7.2.3.tgz#01b9b6eea0ff16c27a3d514f10105d56363428a6" + integrity sha512-Ok0DhLfwrcNGrBn8sNdy1uZqWRk/9FId0GiQ39W4ILop5GHtjJs8bu1MY9isPwHInpVEPWjb4CEcEaSbBLpfwA== dependencies: - autoprefixer "^10.4.1" + autoprefixer "^10.4.2" browserslist "^4.19.1" - caniuse-lite "^1.0.30001295" - css-blank-pseudo "^3.0.1" - css-has-pseudo "^3.0.2" + caniuse-lite "^1.0.30001299" + css-blank-pseudo "^3.0.2" + css-has-pseudo "^3.0.3" css-prefers-color-scheme "^6.0.2" cssdb "^5.0.0" postcss-attribute-case-insensitive "^5.0.0" postcss-color-functional-notation "^4.2.1" postcss-color-hex-alpha "^8.0.2" - postcss-color-rebeccapurple "^7.0.1" + postcss-color-rebeccapurple "^7.0.2" postcss-custom-media "^8.0.0" - postcss-custom-properties "^12.0.2" + postcss-custom-properties "^12.1.2" postcss-custom-selectors "^6.0.0" - postcss-dir-pseudo-class "^6.0.2" + postcss-dir-pseudo-class "^6.0.3" postcss-double-position-gradients "^3.0.4" postcss-env-function "^4.0.4" postcss-focus-visible "^6.0.3" @@ -10351,9 +10339,9 @@ postcss-preset-env@7.2.0: postcss-image-set-function "^4.0.4" postcss-initial "^4.0.1" postcss-lab-function "^4.0.3" - postcss-logical "^5.0.2" + postcss-logical "^5.0.3" postcss-media-minmax "^5.0.0" - postcss-nesting "^10.1.1" + postcss-nesting "^10.1.2" postcss-overflow-shorthand "^3.0.2" postcss-page-break "^3.0.4" postcss-place "^7.0.3" @@ -10531,11 +10519,6 @@ process-nextick-args@~2.0.0: resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== -progress@^2.0.0: - version "2.0.3" - resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" - integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== - promise@^7.0.1: version "7.3.1" resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" @@ -11012,11 +10995,6 @@ repeat-string@^1.6.1: resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= -request-light@^0.5.6: - version "0.5.6" - resolved "https://registry.yarnpkg.com/request-light/-/request-light-0.5.6.tgz#d36eb9b1e574fed1d261414722261a1148db3c2e" - integrity sha512-mIfRkYujBF6qQQi+uJGHFzYD2P7WwfIMyJ3/DcTtOFB3iypwIVOXmsr3RMnFwTJRVcYLLZdjkIx43E8Zn2hRng== - request-progress@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/request-progress/-/request-progress-3.0.0.tgz#4ca754081c7fec63f505e4faa825aa06cd669dbe" @@ -11173,15 +11151,15 @@ rollup-plugin-terser@^7.0.0, rollup-plugin-terser@^7.0.2: serialize-javascript "^4.0.0" terser "^5.0.0" -rollup-plugin-visualizer@5.5.2: - version "5.5.2" - resolved "https://registry.yarnpkg.com/rollup-plugin-visualizer/-/rollup-plugin-visualizer-5.5.2.tgz#ae2130ee5ae4a2d901e764e492b71357cb95eed7" - integrity sha512-sh+P9KhuWTzeStyRA5yNZpoEFGuj5Ph34JLMa9+muhU8CneFf9L0XE4fmAwAojJLWp//uLUEyytBPSCdZEg5AA== +rollup-plugin-visualizer@5.5.4: + version "5.5.4" + resolved "https://registry.yarnpkg.com/rollup-plugin-visualizer/-/rollup-plugin-visualizer-5.5.4.tgz#ce3461fdcbfdf784f52aa5205e1d166e2152bab0" + integrity sha512-CJQFUuZ75S1daGEkk62UH7lL6UFCoP86Sn/iz4gXBdamdwFeD5nPGCHHXfXCrly/wNgQOYTH7cdcxk4+OG3Xjw== dependencies: - nanoid "^3.1.22" - open "^7.4.2" + nanoid "^3.1.32" + open "^8.4.0" source-map "^0.7.3" - yargs "^16.2.0" + yargs "^17.3.1" rollup-pluginutils@^2.8.1, rollup-pluginutils@^2.8.2: version "2.8.2" @@ -11190,10 +11168,10 @@ rollup-pluginutils@^2.8.1, rollup-pluginutils@^2.8.2: dependencies: estree-walker "^0.6.1" -rollup@2.63.0: - version "2.63.0" - resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.63.0.tgz#fe2f7fec2133f3fab9e022b9ac245628d817c6bb" - integrity sha512-nps0idjmD+NXl6OREfyYXMn/dar3WGcyKn+KBzPdaLecub3x/LrId0wUcthcr8oZUAcZAR8NKcfGGFlNgGL1kQ== +rollup@2.64.0: + version "2.64.0" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.64.0.tgz#f0f59774e21fbb56de438a37d06a2189632b207a" + integrity sha512-+c+lbw1lexBKSMb1yxGDVfJ+vchJH3qLbmavR+awDinTDA2C5Ug9u7lkOzj62SCu0PKUExsW36tpgW7Fmpn3yQ== optionalDependencies: fsevents "~2.3.2" @@ -11283,10 +11261,10 @@ safe-stable-stringify@^1.1.0: resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== -sass@1.47.0: - version "1.47.0" - resolved "https://registry.yarnpkg.com/sass/-/sass-1.47.0.tgz#c22dd0eed2e4a991430dae0b03c8e694bc41c2b4" - integrity sha512-GtXwvwgD7/6MLUZPnlA5/8cdRgC9SzT5kAnnJMRmEZQFRE3J56Foswig4NyyyQGsnmNvg6EUM/FP0Pe9Y2zywQ== +sass@1.48.0: + version "1.48.0" + resolved "https://registry.yarnpkg.com/sass/-/sass-1.48.0.tgz#b53cfccc1b8ab4be375cc54f306fda9d4711162c" + integrity sha512-hQi5g4DcfjcipotoHZ80l7GNJHGqQS5LwMBjVYB/TaT0vcSSpbgM8Ad7cgfsB2M0MinbkEQQPO9+sjjSiwxqmw== dependencies: chokidar ">=3.0.0 <4.0.0" immutable "^4.0.0" @@ -11326,7 +11304,7 @@ semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.2.0, semver@^6.3.0: resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== -semver@^7.0.0, semver@^7.2.1, semver@^7.3.2, semver@^7.3.4, semver@^7.3.5: +semver@^7.0.0, semver@^7.3.2, semver@^7.3.4, semver@^7.3.5: version "7.3.5" resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== @@ -11773,7 +11751,7 @@ string-width@^1.0.1: is-fullwidth-code-point "^2.0.0" strip-ansi "^4.0.0" -"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.2.2: +"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.2.2, string-width@^4.2.3: version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -12506,7 +12484,7 @@ typescript@^3.9.7: resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.10.tgz#70f3910ac7a51ed6bef79da7800690b19bf778b8" integrity sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q== -typescript@^4.1.5, typescript@^4.4.3: +typescript@^4.4.3: version "4.4.4" resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.4.4.tgz#2cd01a1a1f160704d3101fd5a58ff0f9fcb8030c" integrity sha512-DqGhF5IKoBl8WNf8C1gu8q0xZSInh9j1kJJMqT3a94w1JzVaBU4EXOSMrz9yDqMT0xt3selp83fuFMQ0uzv6qA== @@ -12732,10 +12710,10 @@ uuid@^8.0.0, uuid@^8.3.2: resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== -v-tooltip@4.0.0-beta.13: - version "4.0.0-beta.13" - resolved "https://registry.yarnpkg.com/v-tooltip/-/v-tooltip-4.0.0-beta.13.tgz#896c6f8e749f75df6a8cbfdc3fa936296ffb63ad" - integrity sha512-6ocBefnUE+aUUfR8OX331HnImNCu5AHiux+UI7JfLCbE7rCNuvTSH8KDMxCcpJ85BzzgdjCtpEztF970YxC9rg== +v-tooltip@4.0.0-beta.17: + version "4.0.0-beta.17" + resolved "https://registry.yarnpkg.com/v-tooltip/-/v-tooltip-4.0.0-beta.17.tgz#914ab8fe801c2c45f1328f1260b770ec2049da64" + integrity sha512-d7v/6KEXQOtcj3NT3Z1LpbDv8SBh8JgbsD+3s/zGIGCxiXC2SoVW6wGV4X0MlCo97PiosibcSe+VKbFiy4AKnQ== dependencies: "@popperjs/core" "^2.11.0" vue-resize "^2.0.0-alpha.1" @@ -12774,10 +12752,10 @@ verror@1.10.0: core-util-is "1.0.2" extsprintf "^1.2.0" -vite-plugin-pwa@0.11.12: - version "0.11.12" - resolved "https://registry.yarnpkg.com/vite-plugin-pwa/-/vite-plugin-pwa-0.11.12.tgz#02b4cfccd7ad098cfb291415c62c3b7281b7c538" - integrity sha512-XqFmA4y9C4RBb5osSsa26GVwOSwbzf2GNVcT5+06KYYdguqLpuI9FW7iV/akZqg0OUNUpH4tHfme8SnHA4PIXA== +vite-plugin-pwa@0.11.13: + version "0.11.13" + resolved "https://registry.yarnpkg.com/vite-plugin-pwa/-/vite-plugin-pwa-0.11.13.tgz#54ed80580b7d3e61aadcf4325fe9bc6f7ffce5db" + integrity sha512-Ssj14m3TRVLfkFEAWSMcFE2d1cSdEZyrVTzfY2lSL+umHYvcIFHVDAY143sygtBCb44OPczsAOmWwBTxwOvh7g== dependencies: debug "^4.3.3" fast-glob "^3.2.7" @@ -12786,18 +12764,18 @@ vite-plugin-pwa@0.11.12: workbox-build "^6.4.2" workbox-window "^6.4.2" -vite-svg-loader@3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/vite-svg-loader/-/vite-svg-loader-3.1.1.tgz#c87f31ed69aadbdcc4b2c8c4b0de9ed82931dfc0" - integrity sha512-riUVb096oYgF+DHHtXPNJIaceFyqGDAjxJE0/aXsz2TW8G/27f4p1e+RZXrltI06Q3GcyB1V4DSoc+Tq6aQSQw== +vite-svg-loader@3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/vite-svg-loader/-/vite-svg-loader-3.1.2.tgz#e701d6f5d42969eac2b3c40fea9d4159bfa27be3" + integrity sha512-op5ENc3eo1K1YlufQtdyAcxxXtiWJHyimH9y573ZWhj/9cw5x3ZtYhOEQua7MugclTa9mnZTzuir0rfTCkVyiQ== dependencies: "@vue/compiler-sfc" "^3.2.20" svgo "^2.7.0" -vite@2.7.10, vite@>=2.7.10: - version "2.7.10" - resolved "https://registry.yarnpkg.com/vite/-/vite-2.7.10.tgz#d12c4c10e56a0ecf7890cb529c15996c6111218f" - integrity sha512-KEY96ntXUid1/xJihJbgmLZx7QSC2D4Tui0FdS0Old5OokYzFclcofhtxtjDdGOk/fFpPbHv9yw88+rB93Tb8w== +vite@2.7.12, vite@>=2.7.12: + version "2.7.12" + resolved "https://registry.yarnpkg.com/vite/-/vite-2.7.12.tgz#7784ab19e7ff98f6a192d2d7d877480a8c2b7e7d" + integrity sha512-KvPYToRQWhRfBeVkyhkZ5hASuHQkqZUUdUcE3xyYtq5oYEPIJ0h9LWiWTO6v990glmSac2cEPeYeXzpX5Z6qKQ== dependencies: esbuild "^0.13.12" postcss "^8.4.5" @@ -12806,10 +12784,10 @@ vite@2.7.10, vite@>=2.7.10: optionalDependencies: fsevents "~2.3.2" -vitest@0.0.139: - version "0.0.139" - resolved "https://registry.yarnpkg.com/vitest/-/vitest-0.0.139.tgz#5a0a29181be27e27fe9582e12d41685c0d4095fe" - integrity sha512-5AXMaEOJXgQpobgXkzBPGP8o4NpAhT2yczeRD1V94U0VWGxRObI1zjqtxBPEtgda8Q4rQKw0SVlHCR0P76h9QA== +vitest@0.1.17: + version "0.1.17" + resolved "https://registry.yarnpkg.com/vitest/-/vitest-0.1.17.tgz#75af1c55aba0e1b08f22ac45890f4bbcfa27b6ee" + integrity sha512-iARxJzpPktbpTJduN3iHilQlsUJsSKOYmaTI1414HzqGKjL25BhqpX5nucnpoTtdDNDmFNMuJwWroAHVzYH2Hg== dependencies: "@types/chai" "^4.3.0" "@types/chai-subset" "^1.3.3" @@ -12817,7 +12795,7 @@ vitest@0.0.139: local-pkg "^0.4.1" tinypool "^0.1.1" tinyspy "^0.2.8" - vite ">=2.7.10" + vite ">=2.7.12" void-elements@^3.1.0: version "3.1.0" @@ -12860,7 +12838,7 @@ vscode-jsonrpc@8.0.0-next.4, vscode-jsonrpc@^8.0.0-next.4: resolved "https://registry.yarnpkg.com/vscode-jsonrpc/-/vscode-jsonrpc-8.0.0-next.4.tgz#c0da5e3536c0862e8189b1678a3a7c4900e6ecbd" integrity sha512-i+wvza5Wd0YV/t9qhnS8I+dJdhJ1fHIhRW4f262rXXM9Mgts5VZhYrRZufGcai4y99RlbZvwaZhplQ6diRXkaA== -vscode-languageserver-protocol@3.17.0-next.11, vscode-languageserver-protocol@^3.17.0-next.11: +vscode-languageserver-protocol@^3.17.0-next.11: version "3.17.0-next.11" resolved "https://registry.yarnpkg.com/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.0-next.11.tgz#0f2b2bc0d28026422340e4571373e018598e2e16" integrity sha512-9FqHT7XvM6tWFsnLvRfuQA7Zh7wZZYAwA9dK85lYthA8M1aXpXEP9drXVvO/Fe03MUeJpKVf2e4/NvDaFUnttg== @@ -12888,38 +12866,31 @@ vscode-languageserver-types@^3.15.1, vscode-languageserver-types@^3.16.0: resolved "https://registry.yarnpkg.com/vscode-languageserver-types/-/vscode-languageserver-types-3.16.0.tgz#ecf393fc121ec6974b2da3efb3155644c514e247" integrity sha512-k8luDIWJWyenLc5ToFQQMaSrqCHiLwyKPHKPQZ5zz21vM+vIVUSvsRpcbiECH4WR88K2XZqc4ScRcZ7nk/jbeA== -vscode-languageserver@^8.0.0-next.5: - version "8.0.0-next.5" - resolved "https://registry.yarnpkg.com/vscode-languageserver/-/vscode-languageserver-8.0.0-next.5.tgz#99f7f25dd658a1f000219f62c29ae557858f850c" - integrity sha512-3E2W0eWtGKb6QAJqspOnD0thrBRRo8IGUMV5jpDNMcMKvmtkcxMwsBh0VxdvuWaZ51PiNyR4L+B+GUvkYsyFEg== - dependencies: - vscode-languageserver-protocol "3.17.0-next.11" - vscode-nls@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/vscode-nls/-/vscode-nls-5.0.0.tgz#99f0da0bd9ea7cda44e565a74c54b1f2bc257840" integrity sha512-u0Lw+IYlgbEJFF6/qAqG2d1jQmJl0eyAGJHoAJqr2HT4M2BNuQYSEiSE75f52pXHSJm8AlTjnLLbBFPrdz2hpA== -vscode-pug-languageservice@0.30.2: - version "0.30.2" - resolved "https://registry.yarnpkg.com/vscode-pug-languageservice/-/vscode-pug-languageservice-0.30.2.tgz#a56d9676693692417737574f7f0fc3e1e35794ab" - integrity sha512-YkrBodqSzNrtLaEIeMnRJAcnqCWysIiOdkzxF6XHuOc+wDvbZ1U4XgxoLvNNjQdzNQIEYKbsLW0ldq5TYphjiA== +vscode-pug-languageservice@0.30.4: + version "0.30.4" + resolved "https://registry.yarnpkg.com/vscode-pug-languageservice/-/vscode-pug-languageservice-0.30.4.tgz#34e4a8c20dea6f521a4128ecc2d939ed9b6c4b41" + integrity sha512-YICdZ3u+Ww+/tKgzwlV6GmE0A0IHMoYaPyxbtvAXOfRkRHs7K3Pxr9a4vwXVa12jwaIzGDAxHAtMK9ATy+BXBg== dependencies: - "@volar/code-gen" "0.30.2" - "@volar/shared" "0.30.2" - "@volar/source-map" "0.30.2" - "@volar/transforms" "0.30.2" + "@volar/code-gen" "0.30.4" + "@volar/shared" "0.30.4" + "@volar/source-map" "0.30.4" + "@volar/transforms" "0.30.4" pug-lexer "^5.0.1" pug-parser "^6.0.0" vscode-languageserver-textdocument "^1.0.3" vscode-languageserver-types "^3.17.0-next.5" -vscode-typescript-languageservice@0.30.2: - version "0.30.2" - resolved "https://registry.yarnpkg.com/vscode-typescript-languageservice/-/vscode-typescript-languageservice-0.30.2.tgz#70c9448aa1aaf8ca6cc71edf721b0a795c859d80" - integrity sha512-5l+gMfbHTZnJy7V7xdH78ai1ViR/scrIVQT5KFraDWLKTYHjGBkHDZ1E9fF+jbeyEizyy2ayldTQ7kCz8jWqVA== +vscode-typescript-languageservice@0.30.4: + version "0.30.4" + resolved "https://registry.yarnpkg.com/vscode-typescript-languageservice/-/vscode-typescript-languageservice-0.30.4.tgz#c8077c2dd936593030e802172806620480031664" + integrity sha512-fWIE6VqU1zuMU99sPNGZiUBPBD5VLf8MDMo9fLh1nFm8udUjvHeDeWEFfNPWKU894RqqL6CCKOo0Y6SOJsi12A== dependencies: - "@volar/shared" "0.30.2" + "@volar/shared" "0.30.4" semver "^7.3.5" upath "^2.0.1" vscode-languageserver-protocol "^3.17.0-next.11" @@ -12936,30 +12907,28 @@ vscode-uri@^3.0.2: resolved "https://registry.yarnpkg.com/vscode-uri/-/vscode-uri-3.0.2.tgz#ecfd1d066cb8ef4c3a208decdbab9a8c23d055d0" integrity sha512-jkjy6pjU1fxUvI51P+gCsxg1u2n8LSt0W6KrCNQceaziKzff74GoWmjVG46KieVzybO1sttPQmYfrwSHey7GUA== -vscode-vue-languageservice@0.30.2: - version "0.30.2" - resolved "https://registry.yarnpkg.com/vscode-vue-languageservice/-/vscode-vue-languageservice-0.30.2.tgz#2b466969e542148c8cf8995779a75096a2abfd2b" - integrity sha512-P0g92JmnVkV2zrWhDbT2zxuOUp0X2kMM9VHlrT7ALZq8wAhPOW0B4nhhb9a6jKBh6qqFBDquNeQRvTEZp4NJMA== +vscode-vue-languageservice@0.30.4: + version "0.30.4" + resolved "https://registry.yarnpkg.com/vscode-vue-languageservice/-/vscode-vue-languageservice-0.30.4.tgz#0c1c87305a10d5a37d4184ebe738a338b2810404" + integrity sha512-YBZwAjulR9gbPDVXp/BZsw3rNK0eDLQaheafsNsxIYrGJglHRKWLezv3az8/Qf99itsLGQauOzekyI7SKKyNfg== dependencies: - "@volar/code-gen" "0.30.2" - "@volar/html2pug" "0.30.2" - "@volar/shared" "0.30.2" - "@volar/source-map" "0.30.2" - "@volar/transforms" "0.30.2" - "@volar/vue-code-gen" "0.30.2" + "@volar/code-gen" "0.30.4" + "@volar/html2pug" "0.30.4" + "@volar/shared" "0.30.4" + "@volar/source-map" "0.30.4" + "@volar/transforms" "0.30.4" + "@volar/vue-code-gen" "0.30.4" "@vscode/emmet-helper" "^2.8.3" "@vue/reactivity" "^3.2.26" "@vue/shared" "^3.2.26" - request-light "^0.5.6" upath "^2.0.1" vscode-css-languageservice "^5.1.9" vscode-html-languageservice "^4.2.1" vscode-json-languageservice "^4.1.10" - vscode-languageserver "^8.0.0-next.5" vscode-languageserver-protocol "^3.17.0-next.11" vscode-languageserver-textdocument "^1.0.3" - vscode-pug-languageservice "0.30.2" - vscode-typescript-languageservice "0.30.2" + vscode-pug-languageservice "0.30.4" + vscode-typescript-languageservice "0.30.4" vue-advanced-cropper@2.7.1: version "2.7.1" @@ -13013,14 +12982,14 @@ vue-flatpickr-component@9.0.5: dependencies: flatpickr "^4.6.9" -vue-i18n@9.2.0-beta.26: - version "9.2.0-beta.26" - resolved "https://registry.yarnpkg.com/vue-i18n/-/vue-i18n-9.2.0-beta.26.tgz#79ff5151837c645c9a91af03724ed28a09a1f3db" - integrity sha512-xZgisyirT9hXFyXBL8pO8bYgdG7m98NLAUhbb1O9hMQS1qOXYU902+LIJA5k3BtoeiEIfjkGADHhSAlJTTzc9A== +vue-i18n@9.2.0-beta.28: + version "9.2.0-beta.28" + resolved "https://registry.yarnpkg.com/vue-i18n/-/vue-i18n-9.2.0-beta.28.tgz#fcfa1d2deafb0914817fb338ed8e5deb54ba4e44" + integrity sha512-Jn7DHA3JgOYaB6ahqmuW0wQ2zZx0ivastVDUul8325geyT0Q4PblJvXvfWHi2L0eb+YjWMZvf30MQYJ1FWDlfQ== dependencies: - "@intlify/core-base" "9.2.0-beta.26" - "@intlify/shared" "9.2.0-beta.26" - "@intlify/vue-devtools" "9.2.0-beta.26" + "@intlify/core-base" "9.2.0-beta.28" + "@intlify/shared" "9.2.0-beta.28" + "@intlify/vue-devtools" "9.2.0-beta.28" "@vue/devtools-api" "^6.0.0-beta.13" vue-resize@^2.0.0-alpha.1: @@ -13035,24 +13004,24 @@ vue-router@4.0.12: dependencies: "@vue/devtools-api" "^6.0.0-beta.18" -vue-tsc@0.30.2: - version "0.30.2" - resolved "https://registry.yarnpkg.com/vue-tsc/-/vue-tsc-0.30.2.tgz#22f42fa0e2af1eee33ce784804a8dd13aae017f8" - integrity sha512-A8KIk5KwQTbSdsrDxwJkFYLPqDJ1zM86w3X8cgpi6rveozKUGDMPt300awEz61sTuBM9fAfUhNRcsWbsJ1I+TQ== +vue-tsc@0.30.4: + version "0.30.4" + resolved "https://registry.yarnpkg.com/vue-tsc/-/vue-tsc-0.30.4.tgz#f511a46ff199b7febb07353799809e84f043827b" + integrity sha512-JSgBKy/V5n1cGWr4+rtXr+f04FBIJl3tX4u24SLDvUJhVMXKvMMyygjHKs9mg0w8vhdLPvv+/JK3qHi9V7MR5w== dependencies: - "@volar/shared" "0.30.2" - vscode-vue-languageservice "0.30.2" + "@volar/shared" "0.30.4" + vscode-vue-languageservice "0.30.4" -vue@3.2.26: - version "3.2.26" - resolved "https://registry.yarnpkg.com/vue/-/vue-3.2.26.tgz#5db575583ecae495c7caa5c12fd590dffcbb763e" - integrity sha512-KD4lULmskL5cCsEkfhERVRIOEDrfEL9CwAsLYpzptOGjaGFNWo3BQ9g8MAb7RaIO71rmVOziZ/uEN/rHwcUIhg== +vue@3.2.27: + version "3.2.27" + resolved "https://registry.yarnpkg.com/vue/-/vue-3.2.27.tgz#dc898b3cf7393a620ed5e4a91e5fa8c1ed1ba67a" + integrity sha512-p1cH8Q6eaPwvANCjFQj497a914cxXKKwOG3Lg9USddTOrn4/zFMKjn9dnovkx+L8VtFaNgbVqW8mLJS/eTA6xw== dependencies: - "@vue/compiler-dom" "3.2.26" - "@vue/compiler-sfc" "3.2.26" - "@vue/runtime-dom" "3.2.26" - "@vue/server-renderer" "3.2.26" - "@vue/shared" "3.2.26" + "@vue/compiler-dom" "3.2.27" + "@vue/compiler-sfc" "3.2.27" + "@vue/runtime-dom" "3.2.27" + "@vue/server-renderer" "3.2.27" + "@vue/shared" "3.2.27" vuedraggable@4.1.0: version "4.1.0" @@ -13497,6 +13466,11 @@ yargs-parser@^20.2.2: resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== +yargs-parser@^21.0.0: + version "21.0.0" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.0.0.tgz#a485d3966be4317426dd56bdb6a30131b281dc55" + integrity sha512-z9kApYUOCwoeZ78rfRYYWdiU/iNL6mwwYlkkZfJoyMR1xps+NEBX5X7XmRpxkZHhXJ6+Ey00IwKxBBSW9FIjyA== + yargs@^15.3.0, yargs@^15.3.1: version "15.4.1" resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8" @@ -13514,7 +13488,7 @@ yargs@^15.3.0, yargs@^15.3.1: y18n "^4.0.0" yargs-parser "^18.1.2" -yargs@^16.0.0, yargs@^16.2.0: +yargs@^16.0.0: version "16.2.0" resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== @@ -13527,6 +13501,19 @@ yargs@^16.0.0, yargs@^16.2.0: y18n "^5.0.5" yargs-parser "^20.2.2" +yargs@^17.3.1: + version "17.3.1" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.3.1.tgz#da56b28f32e2fd45aefb402ed9c26f42be4c07b9" + integrity sha512-WUANQeVgjLbNsEmGk20f+nlHgOqzRFpiGWVaBrYGYIGANIIu3lWjoyi0fNlFmJkvfhCZ6BXINe7/W2O2bV4iaA== + dependencies: + cliui "^7.0.2" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.3" + y18n "^5.0.5" + yargs-parser "^21.0.0" + yauzl@^2.10.0, yauzl@^2.4.2: version "2.10.0" resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz#c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9"