diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d2f204f2..9202600f 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -11,9 +11,9 @@ jobs: - name: Checkout code uses: actions/checkout@v2.4.0 - name: Install Node - uses: actions/setup-node@v2.5.1 + uses: actions/setup-node@v3 - name: Install pnpm - uses: pnpm/action-setup@v2.0.1 + uses: pnpm/action-setup@v2.2.1 with: version: 6.20.1 - name: Install dependencies @@ -25,7 +25,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Install Go - uses: actions/setup-go@v2.1.5 + uses: actions/setup-go@v2.2.0 with: go-version: 1.17.x - name: Checkout code @@ -57,7 +57,7 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v1.6.0 - name: Login to DockerHub - uses: docker/login-action@v1.12.0 + uses: docker/login-action@v1.13.0 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} @@ -81,9 +81,9 @@ jobs: with: fetch-depth: 0 - name: Install Node - uses: actions/setup-node@v2.5.1 + uses: actions/setup-node@v3 - name: Install pnpm - uses: pnpm/action-setup@v2.0.1 + uses: pnpm/action-setup@v2.2.1 with: version: 6.20.1 - name: Install dependencies diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 33a9b976..7e943434 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -21,7 +21,7 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v1.6.0 - name: Login to DockerHub - uses: docker/login-action@v1.12.0 + uses: docker/login-action@v1.13.0 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2c06c071..48d04c02 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,9 +14,9 @@ jobs: - name: Checkout code uses: actions/checkout@v2.4.0 - name: Install Node - uses: actions/setup-node@v2.5.1 + uses: actions/setup-node@v3 - name: Install pnpm - uses: pnpm/action-setup@v2.0.1 + uses: pnpm/action-setup@v2.2.1 with: version: 6.20.1 - name: Install dependencies @@ -28,7 +28,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Install Go - uses: actions/setup-go@v2.1.5 + uses: actions/setup-go@v2.2.0 with: go-version: 1.17.x - name: Checkout code diff --git a/Dockerfile b/Dockerfile index e4c823fd..fd4d06ff 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,7 +21,7 @@ RUN pnpm install -r --offline --prod # Do the build RUN pnpm build -FROM golang:1.17.6-alpine AS builder +FROM golang:1.17.7-alpine AS builder RUN apk add --no-cache git ca-certificates && mkdir /dozzle diff --git a/assets/components.d.ts b/assets/components.d.ts index 301833e3..e0177f38 100644 --- a/assets/components.d.ts +++ b/assets/components.d.ts @@ -2,38 +2,38 @@ // We suggest you to commit this file into source control // Read more: https://github.com/vuejs/vue-next/pull/3399 -declare module 'vue' { +declare module "vue" { export interface GlobalComponents { - CarbonCaretDown: typeof import('~icons/carbon/caret-down')['default'] - CilColumns: typeof import('~icons/cil/columns')['default'] - CilFindInPage: typeof import('~icons/cil/find-in-page')['default'] - ContainerStat: typeof import('./components/ContainerStat.vue')['default'] - ContainerTitle: typeof import('./components/ContainerTitle.vue')['default'] - DropdownMenu: typeof import('./components/DropdownMenu.vue')['default'] - FuzzySearchModal: typeof import('./components/FuzzySearchModal.vue')['default'] - InfiniteLoader: typeof import('./components/InfiniteLoader.vue')['default'] - LogActionsToolbar: typeof import('./components/LogActionsToolbar.vue')['default'] - LogContainer: typeof import('./components/LogContainer.vue')['default'] - LogEventSource: typeof import('./components/LogEventSource.vue')['default'] - LogViewer: typeof import('./components/LogViewer.vue')['default'] - LogViewerWithSource: typeof import('./components/LogViewerWithSource.vue')['default'] - MdiDotsVertical: typeof import('~icons/mdi/dots-vertical')['default'] - MdiLightChevronDoubleDown: typeof import('~icons/mdi-light/chevron-double-down')['default'] - MdiLightChevronLeft: typeof import('~icons/mdi-light/chevron-left')['default'] - MdiLightChevronRight: typeof import('~icons/mdi-light/chevron-right')['default'] - MdiLightCog: typeof import('~icons/mdi-light/cog')['default'] - MdiLightMagnify: typeof import('~icons/mdi-light/magnify')['default'] - MobileMenu: typeof import('./components/MobileMenu.vue')['default'] - OcticonContainer24: typeof import('~icons/octicon/container24')['default'] - OcticonDownload24: typeof import('~icons/octicon/download24')['default'] - OcticonTrash24: typeof import('~icons/octicon/trash24')['default'] - PastTime: typeof import('./components/PastTime.vue')['default'] - RelativeTime: typeof import('./components/RelativeTime.vue')['default'] - ScrollableView: typeof import('./components/ScrollableView.vue')['default'] - ScrollProgress: typeof import('./components/ScrollProgress.vue')['default'] - Search: typeof import('./components/Search.vue')['default'] - SideMenu: typeof import('./components/SideMenu.vue')['default'] + CarbonCaretDown: typeof import("~icons/carbon/caret-down")["default"]; + CilColumns: typeof import("~icons/cil/columns")["default"]; + CilFindInPage: typeof import("~icons/cil/find-in-page")["default"]; + ContainerStat: typeof import("./components/ContainerStat.vue")["default"]; + ContainerTitle: typeof import("./components/ContainerTitle.vue")["default"]; + DropdownMenu: typeof import("./components/DropdownMenu.vue")["default"]; + FuzzySearchModal: typeof import("./components/FuzzySearchModal.vue")["default"]; + InfiniteLoader: typeof import("./components/InfiniteLoader.vue")["default"]; + LogActionsToolbar: typeof import("./components/LogActionsToolbar.vue")["default"]; + LogContainer: typeof import("./components/LogContainer.vue")["default"]; + LogEventSource: typeof import("./components/LogEventSource.vue")["default"]; + LogViewer: typeof import("./components/LogViewer.vue")["default"]; + LogViewerWithSource: typeof import("./components/LogViewerWithSource.vue")["default"]; + MdiDotsVertical: typeof import("~icons/mdi/dots-vertical")["default"]; + MdiLightChevronDoubleDown: typeof import("~icons/mdi-light/chevron-double-down")["default"]; + MdiLightChevronLeft: typeof import("~icons/mdi-light/chevron-left")["default"]; + MdiLightChevronRight: typeof import("~icons/mdi-light/chevron-right")["default"]; + MdiLightCog: typeof import("~icons/mdi-light/cog")["default"]; + MdiLightMagnify: typeof import("~icons/mdi-light/magnify")["default"]; + MobileMenu: typeof import("./components/MobileMenu.vue")["default"]; + OcticonContainer24: typeof import("~icons/octicon/container24")["default"]; + OcticonDownload24: typeof import("~icons/octicon/download24")["default"]; + OcticonTrash24: typeof import("~icons/octicon/trash24")["default"]; + PastTime: typeof import("./components/PastTime.vue")["default"]; + RelativeTime: typeof import("./components/RelativeTime.vue")["default"]; + ScrollableView: typeof import("./components/ScrollableView.vue")["default"]; + ScrollProgress: typeof import("./components/ScrollProgress.vue")["default"]; + Search: typeof import("./components/Search.vue")["default"]; + SideMenu: typeof import("./components/SideMenu.vue")["default"]; } } -export { } +export {}; diff --git a/go.mod b/go.mod index 534bcfa8..93a999f6 100644 --- a/go.mod +++ b/go.mod @@ -2,7 +2,7 @@ module github.com/amir20/dozzle require ( github.com/Microsoft/go-winio v0.5.1 // indirect - github.com/alexflint/go-arg v1.4.2 + github.com/alexflint/go-arg v1.4.3 github.com/beme/abide v0.0.0-20190723115211-635a09831760 github.com/containerd/containerd v1.5.7 // indirect github.com/docker/distribution v2.7.1+incompatible // indirect @@ -13,14 +13,14 @@ require ( github.com/gogo/protobuf v1.3.2 // indirect github.com/gorilla/mux v1.8.0 github.com/gorilla/sessions v1.2.1 - github.com/magiconair/properties v1.8.5 + github.com/magiconair/properties v1.8.6 github.com/moby/term v0.0.0-20201216013528-df9cb8a40635 // indirect github.com/morikuni/aec v1.0.0 // indirect github.com/opencontainers/go-digest v1.0.0 // indirect github.com/opencontainers/image-spec v1.0.1 // indirect github.com/sergi/go-diff v1.1.0 // indirect github.com/sirupsen/logrus v1.8.1 - github.com/spf13/afero v1.8.0 + github.com/spf13/afero v1.8.1 github.com/stretchr/objx v0.3.0 // indirect github.com/stretchr/testify v1.7.0 golang.org/x/net v0.0.0-20211104170005-ce137452f963 // indirect diff --git a/go.sum b/go.sum index 9433a85a..084bae99 100644 --- a/go.sum +++ b/go.sum @@ -81,10 +81,9 @@ github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuy github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= -github.com/alexflint/go-arg v1.4.2 h1:lDWZAXxpAnZUq4qwb86p/3rIJJ2Li81EoMbTMujhVa0= -github.com/alexflint/go-arg v1.4.2/go.mod h1:9iRbDxne7LcR/GSvEr7ma++GLpdIU1zrghf2y2768kM= +github.com/alexflint/go-arg v1.4.3 h1:9rwwEBpMXfKQKceuZfYcwuc/7YY7tWJbFsgG5cAU/uo= +github.com/alexflint/go-arg v1.4.3/go.mod h1:3PZ/wp/8HuqRZMUUgu7I+e1qcpUbvmS258mRXkFH4IA= github.com/alexflint/go-filemutex v0.0.0-20171022225611-72bdc8eae2ae/go.mod h1:CgnQgUtFrFz9mxFNtED3jI5tLDjKlOM+oUF/sTk6ps0= -github.com/alexflint/go-scalar v1.0.0/go.mod h1:GpHzbCOZXEKMEcygYQ5n/aa4Aq84zbxjy3MxYW0gjYw= github.com/alexflint/go-scalar v1.1.0 h1:aaAouLLzI9TChcPXotr6gUhq+Scr8rl0P9P4PnltbhM= github.com/alexflint/go-scalar v1.1.0/go.mod h1:LoFvNMqS1CPrMVltza4LvnGKhaSpc3oyLEBUZVhhS2o= github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= @@ -452,8 +451,8 @@ github.com/kr/pty v1.1.5/go.mod h1:9r2w37qlBe7rQ6e1fg1S/9xpWHSnaqNdHD3WcMdbPDA= github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= -github.com/magiconair/properties v1.8.5 h1:b6kJs+EmPFMYGkow9GiUyCyOvIwYetYJ3fSaWak/Gls= -github.com/magiconair/properties v1.8.5/go.mod h1:y3VJvCyxH9uVvJTWEGAELF3aiYNyPKd5NZ3oSwXrF60= +github.com/magiconair/properties v1.8.6 h1:5ibWZ6iY0NctNGWo87LalDlEZ6R41TqbbDamhfG/Qzo= +github.com/magiconair/properties v1.8.6/go.mod h1:y3VJvCyxH9uVvJTWEGAELF3aiYNyPKd5NZ3oSwXrF60= github.com/mailru/easyjson v0.0.0-20190614124828-94de47d64c63/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= github.com/mailru/easyjson v0.0.0-20190626092158-b2ccc519800e/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= github.com/mailru/easyjson v0.7.0/go.mod h1:KAzv3t3aY1NaHWoQz1+4F1ccyAH66Jk7yos7ldAVICs= @@ -594,8 +593,8 @@ github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4k github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ= github.com/spf13/afero v1.2.2/go.mod h1:9ZxEEn6pIJ8Rxe320qSDBk6AsU0r9pR7Q4OcevTdifk= -github.com/spf13/afero v1.8.0 h1:5MmtuhAgYeU6qpa7w7bP0dv6MBYuup0vekhSpSkoq60= -github.com/spf13/afero v1.8.0/go.mod h1:CtAatgMJh6bJEIs48Ay/FOnkljP3WeGUG0MC1RfAqwo= +github.com/spf13/afero v1.8.1 h1:izYHOT71f9iZ7iq37Uqjael60/vYC6vMtzedudZ0zEk= +github.com/spf13/afero v1.8.1/go.mod h1:CtAatgMJh6bJEIs48Ay/FOnkljP3WeGUG0MC1RfAqwo= github.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= github.com/spf13/cobra v0.0.2-0.20171109065643-2da4a54c5cee/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ= github.com/spf13/cobra v0.0.3/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ= diff --git a/package.json b/package.json index b749d899..c6cb171c 100644 --- a/package.json +++ b/package.json @@ -22,39 +22,39 @@ "postinstall": "husky install" }, "dependencies": { - "@iconify-json/carbon": "^1.0.14", - "@iconify-json/cil": "^1.0.1", - "@iconify-json/mdi": "^1.0.15", - "@iconify-json/mdi-light": "^1.0.1", - "@iconify-json/octicon": "^1.0.9", - "@oruga-ui/oruga-next": "^0.5.3", - "@oruga-ui/theme-bulma": "^0.2.1", - "@vitejs/plugin-vue": "^2.1.0", - "@vue/compiler-sfc": "^3.2.29", - "@vueuse/core": "^7.5.5", + "@iconify-json/carbon": "^1.1.1", + "@iconify-json/cil": "^1.1.0", + "@iconify-json/mdi": "^1.1.0", + "@iconify-json/mdi-light": "^1.1.0", + "@iconify-json/octicon": "^1.1.1", + "@oruga-ui/oruga-next": "^0.5.4", + "@oruga-ui/theme-bulma": "^0.2.2", + "@vitejs/plugin-vue": "^2.2.2", + "@vue/compiler-sfc": "^3.2.31", + "@vueuse/core": "^7.6.2", "ansi-to-html": "^0.7.2", "bulma": "^0.9.3", "date-fns": "^2.28.0", - "fuzzysort": "^1.1.4", + "fuzzysort": "^1.2.1", "hotkeys-js": "^3.8.7", "lodash.debounce": "^4.0.8", "pinia": "^2.0.11", - "sass": "^1.49.1", + "sass": "^1.49.8", "semver": "^7.3.5", - "splitpanes": "^3.0.6", + "splitpanes": "^3.1.1", "typescript": "^4.5.5", - "unplugin-auto-import": "^0.5.11", - "unplugin-icons": "^0.13.0", - "unplugin-vue-components": "^0.17.15", - "vite": "^2.7.13", - "vue": "^3.2.26", + "unplugin-auto-import": "^0.6.1", + "unplugin-icons": "^0.13.2", + "unplugin-vue-components": "^0.17.20", + "vite": "^2.8.4", + "vue": "^3.2.31", "vue-router": "^4.0.12" }, "devDependencies": { "@pinia/testing": "^0.0.9", - "@types/jest": "^27.4.0", + "@types/jest": "^27.4.1", "@types/lodash.debounce": "^4.0.6", - "@types/node": "^17.0.13", + "@types/node": "^17.0.21", "@types/semver": "^7.3.9", "@vue/test-utils": "^2.0.0-rc.18", "c8": "^7.11.0", @@ -62,12 +62,12 @@ "husky": "^7.0.4", "jest-serializer-vue": "^2.0.2", "jsdom": "^19.0.0", - "lint-staged": "^12.3.2", + "lint-staged": "^12.3.4", "npm-run-all": "^4.1.5", "prettier": "^2.5.1", - "release-it": "^14.12.4", - "ts-node": "^10.4.0", - "vitest": "^0.2.5" + "release-it": "^14.12.5", + "ts-node": "^10.5.0", + "vitest": "^0.5.4" }, "lint-staged": { "*.{js,vue,css}": [ diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index c4afdc5c..1b26e32b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,98 +1,98 @@ lockfileVersion: 5.3 specifiers: - '@iconify-json/carbon': ^1.0.14 - '@iconify-json/cil': ^1.0.1 - '@iconify-json/mdi': ^1.0.15 - '@iconify-json/mdi-light': ^1.0.1 - '@iconify-json/octicon': ^1.0.9 - '@oruga-ui/oruga-next': ^0.5.3 - '@oruga-ui/theme-bulma': ^0.2.1 + '@iconify-json/carbon': ^1.1.1 + '@iconify-json/cil': ^1.1.0 + '@iconify-json/mdi': ^1.1.0 + '@iconify-json/mdi-light': ^1.1.0 + '@iconify-json/octicon': ^1.1.1 + '@oruga-ui/oruga-next': ^0.5.4 + '@oruga-ui/theme-bulma': ^0.2.2 '@pinia/testing': ^0.0.9 - '@types/jest': ^27.4.0 + '@types/jest': ^27.4.1 '@types/lodash.debounce': ^4.0.6 - '@types/node': ^17.0.13 + '@types/node': ^17.0.21 '@types/semver': ^7.3.9 - '@vitejs/plugin-vue': ^2.1.0 - '@vue/compiler-sfc': ^3.2.29 + '@vitejs/plugin-vue': ^2.2.2 + '@vue/compiler-sfc': ^3.2.31 '@vue/test-utils': ^2.0.0-rc.18 - '@vueuse/core': ^7.5.5 + '@vueuse/core': ^7.6.2 ansi-to-html: ^0.7.2 bulma: ^0.9.3 c8: ^7.11.0 date-fns: ^2.28.0 eventsourcemock: ^2.0.0 - fuzzysort: ^1.1.4 + fuzzysort: ^1.2.1 hotkeys-js: ^3.8.7 husky: ^7.0.4 jest-serializer-vue: ^2.0.2 jsdom: ^19.0.0 - lint-staged: ^12.3.2 + lint-staged: ^12.3.4 lodash.debounce: ^4.0.8 npm-run-all: ^4.1.5 pinia: ^2.0.11 prettier: ^2.5.1 - release-it: ^14.12.4 - sass: ^1.49.1 + release-it: ^14.12.5 + sass: ^1.49.8 semver: ^7.3.5 - splitpanes: ^3.0.6 - ts-node: ^10.4.0 + splitpanes: ^3.1.1 + ts-node: ^10.5.0 typescript: ^4.5.5 - unplugin-auto-import: ^0.5.11 - unplugin-icons: ^0.13.0 - unplugin-vue-components: ^0.17.15 - vite: ^2.7.13 - vitest: ^0.2.5 - vue: ^3.2.26 + unplugin-auto-import: ^0.6.1 + unplugin-icons: ^0.13.2 + unplugin-vue-components: ^0.17.20 + vite: ^2.8.4 + vitest: ^0.5.4 + vue: ^3.2.31 vue-router: ^4.0.12 dependencies: - '@iconify-json/carbon': 1.0.14 - '@iconify-json/cil': 1.0.1 - '@iconify-json/mdi': 1.0.15 - '@iconify-json/mdi-light': 1.0.1 - '@iconify-json/octicon': 1.0.9 - '@oruga-ui/oruga-next': 0.5.3_vue@3.2.26 - '@oruga-ui/theme-bulma': 0.2.1 - '@vitejs/plugin-vue': 2.1.0_vite@2.7.13+vue@3.2.26 - '@vue/compiler-sfc': 3.2.29 - '@vueuse/core': 7.5.5_vue@3.2.26 + '@iconify-json/carbon': 1.1.1 + '@iconify-json/cil': 1.1.0 + '@iconify-json/mdi': 1.1.0 + '@iconify-json/mdi-light': 1.1.0 + '@iconify-json/octicon': 1.1.1 + '@oruga-ui/oruga-next': 0.5.4_vue@3.2.31 + '@oruga-ui/theme-bulma': 0.2.2 + '@vitejs/plugin-vue': 2.2.2_vite@2.8.4+vue@3.2.31 + '@vue/compiler-sfc': 3.2.31 + '@vueuse/core': 7.6.2_vue@3.2.31 ansi-to-html: 0.7.2 bulma: 0.9.3 date-fns: 2.28.0 - fuzzysort: 1.1.4 + fuzzysort: 1.2.1 hotkeys-js: 3.8.7 lodash.debounce: 4.0.8 - pinia: 2.0.11_typescript@4.5.5+vue@3.2.26 - sass: 1.49.1 + pinia: 2.0.11_typescript@4.5.5+vue@3.2.31 + sass: 1.49.8 semver: 7.3.5 - splitpanes: 3.0.6 + splitpanes: 3.1.1 typescript: 4.5.5 - unplugin-auto-import: 0.5.11_@vueuse+core@7.5.5+vite@2.7.13 - unplugin-icons: 0.13.0_156ab524000ac0f29e01f162b9943b71 - unplugin-vue-components: 0.17.15_vite@2.7.13+vue@3.2.26 - vite: 2.7.13_sass@1.49.1 - vue: 3.2.26 - vue-router: 4.0.12_vue@3.2.26 + unplugin-auto-import: 0.6.1_@vueuse+core@7.6.2+vite@2.8.4 + unplugin-icons: 0.13.2_7c21275ff0dea6ae855d07d572d52fcf + unplugin-vue-components: 0.17.20_vite@2.8.4+vue@3.2.31 + vite: 2.8.4_sass@1.49.8 + vue: 3.2.31 + vue-router: 4.0.12_vue@3.2.31 devDependencies: - '@pinia/testing': 0.0.9_pinia@2.0.11+vue@3.2.26 - '@types/jest': 27.4.0 + '@pinia/testing': 0.0.9_pinia@2.0.11+vue@3.2.31 + '@types/jest': 27.4.1 '@types/lodash.debounce': 4.0.6 - '@types/node': 17.0.13 + '@types/node': 17.0.21 '@types/semver': 7.3.9 - '@vue/test-utils': 2.0.0-rc.18_vue@3.2.26 + '@vue/test-utils': 2.0.0-rc.18_vue@3.2.31 c8: 7.11.0 eventsourcemock: 2.0.0 husky: 7.0.4 jest-serializer-vue: 2.0.2 jsdom: 19.0.0 - lint-staged: 12.3.2 + lint-staged: 12.3.4 npm-run-all: 4.1.5 prettier: 2.5.1 - release-it: 14.12.4 - ts-node: 10.4.0_40146b36d18138e3202fbb722e5f65e4 - vitest: 0.2.5_05f2560ef29531b3d2c63d1c9d11d95b + release-it: 14.12.5 + ts-node: 10.5.0_99a448058f874aec2a353d0e974167cc + vitest: 0.5.4_cd210661e4654a5e11249b465567e809 packages: @@ -115,6 +115,10 @@ packages: '@types/throttle-debounce': 2.1.0 dev: false + /@antfu/utils/0.5.0: + resolution: {integrity: sha512-MrAQ/MrPSxbh1bBrmwJjORfJymw4IqSHFBXqvxaga3ZdDM+/zokYF8DjyJpSjY2QmpmgQrajDUBJOWrYeARfzA==} + dev: false + /@babel/code-frame/7.16.7: resolution: {integrity: sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==} engines: {node: '>=6.9.0'} @@ -136,14 +140,8 @@ packages: js-tokens: 4.0.0 dev: true - /@babel/parser/7.16.12: - resolution: {integrity: sha512-VfaV15po8RiZssrkPweyvbGVSe4x2y+aciFCgn0n0/SJMR22cwofRV1mtnJQYcSB1wUTaA/X1LnA3es66MCO5A==} - engines: {node: '>=6.0.0'} - hasBin: true - dev: false - - /@babel/parser/7.16.8: - resolution: {integrity: sha512-i7jDUfrVBWc+7OKcBzEe5n7fbv3i2fWtxKzzCvOjnzSxMfWMigAhtfJ7qzZNGFNMsCCd67+uz553dYKWXPvCKw==} + /@babel/parser/7.17.3: + resolution: {integrity: sha512-7yJPvPV+ESz2IUTPbOL+YkIGyCqOyNIzdguKQuJGnH7bg1WTIifuM21YqokFt/THWh1AkCRn9IgoykTRCBVpzA==} engines: {node: '>=6.0.0'} hasBin: true dev: false @@ -168,32 +166,32 @@ packages: resolution: {integrity: sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==} dev: true - /@iconify-json/carbon/1.0.14: - resolution: {integrity: sha512-nPJtOG2wmGwSek4wFoQWOecQKhIuav2qBFXqDWQl+vfqwqwCEYloUrFzedqhwhFv1AO/P81CY+F919YuYWgCXA==} + /@iconify-json/carbon/1.1.1: + resolution: {integrity: sha512-ClOYc+82CKlDAKH1tfDTJTzNz4oHhYD04ALA5uemw9PdWXg05yIJb9bxWjSz4UgdUbH5N/yd8s9hNPI3h6jnlg==} dependencies: '@iconify/types': 1.0.12 dev: false - /@iconify-json/cil/1.0.1: - resolution: {integrity: sha512-gLk0c25zSBtKKJWrGXVfQITeIdmvlSOiO/cKTVTQPG3W4qKh8V/wL3Fltb4j4iMPJgRVXylPPwKSwXbIDBDgZA==} + /@iconify-json/cil/1.1.0: + resolution: {integrity: sha512-LM8EThNTq+M1LPqefXp/6o8Rn7pZBjvJeJRF6mdUZKKF/YmhqR1hawQ3ILXc4HYjeomGUoJrJTzvOrmydftgiw==} dependencies: '@iconify/types': 1.0.12 dev: false - /@iconify-json/mdi-light/1.0.1: - resolution: {integrity: sha512-lbucb1t36lRRxEHNnJcROt0SRRRQgI6gmzj1Pv2qadrw/5mjLN6+OzOOCAIwCLDu//hU7xMkXDCw47aWtbRHaA==} + /@iconify-json/mdi-light/1.1.0: + resolution: {integrity: sha512-Ff81H6d1GMfrzvjEDGa4VjNllXATn6XeK6OwU9tg/uVpGuaXMJIfQqfypyZAfqS67dcULnk2nYhMMrnEjGnIaQ==} dependencies: '@iconify/types': 1.0.12 dev: false - /@iconify-json/mdi/1.0.15: - resolution: {integrity: sha512-koiuzFiuFme2uvXl9ZH1uuhPzESw34Fr1K5RLdbtTY9CSOMpe8rVcQCUB3n4lQrHplXlm6DyyFIgCIUCFP+ciA==} + /@iconify-json/mdi/1.1.0: + resolution: {integrity: sha512-yIE4GUlFolwQSItq1T60qmBxCmEL7O9YPfyV/C9HM/d+QsW3nXRKy5UTDwIAeQqagKoyLZu+xIC9TYlx2pZQXA==} dependencies: '@iconify/types': 1.0.12 dev: false - /@iconify-json/octicon/1.0.9: - resolution: {integrity: sha512-e2fP6v8fYGs5QHSrYNWiLNiUeHMR+HM/g05gGoon1turwWlw5+8KUypMNaW7o0XnJN9bGWxiWWzKFDG1zA03MA==} + /@iconify-json/octicon/1.1.1: + resolution: {integrity: sha512-ilIFf6IFnZ+dpM+eaVJqaLD2M5McWJV56eSWrACxMGwNMyjl7+esFMUeh2Bv2NQoS7ra1k5EbGprLM5Ibo92og==} dependencies: '@iconify/types': 1.0.12 dev: false @@ -202,8 +200,8 @@ packages: resolution: {integrity: sha512-6er6wSGF3hgc1JEZqiGpg21CTCjHBYOUwqLmb2Idzkjiw6ogalGP0ZMLVutCzah+0WB4yP+Zd2oVPN8jvJ+Ftg==} dev: false - /@iconify/utils/1.0.21: - resolution: {integrity: sha512-Rf8vfOH7MI30xyc9rbLFdxnfsfdcrIiIxsoZyEWkUK8P65QsS9PrQXunOc9Wt7uZfJTiX25WMED3WqLKXrRx1Q==} + /@iconify/utils/1.0.23: + resolution: {integrity: sha512-Ktdmpe4mkMXQAnnDUz3s6s5aY/BeVPwHC1d5IhG1bgrWVNWFQNUj8cQPMbHpNCSD9MRC5yGxm9/PGPpOWGJLAg==} dependencies: '@antfu/install-pkg': 0.1.0 '@antfu/utils': 0.3.0 @@ -345,27 +343,27 @@ packages: '@octokit/openapi-types': 11.2.0 dev: true - /@oruga-ui/oruga-next/0.5.3_vue@3.2.26: - resolution: {integrity: sha512-++WHQDFrsdck/Wey0GWgxs5U6JsRYPkAIvVGlnN+A29u4EcOZphn5l7fc6Tu4LKBduPYQr2122tXuGThCnQ8UA==} + /@oruga-ui/oruga-next/0.5.4_vue@3.2.31: + resolution: {integrity: sha512-Lh7v5lKBiJKacY0oO+Hx06n/hFn20eGwq/0f9GRzmxHOWGYEo2VK5JmmOC9DinCw/4yqXC97Ecdiqc+/xVc6lQ==} peerDependencies: vue: ^3.0.0 dependencies: - vue: 3.2.26 + vue: 3.2.31 dev: false - /@oruga-ui/theme-bulma/0.2.1: - resolution: {integrity: sha512-d94H0GjLO36XgPubiblLge4GvlD0vnPBnpBlp9ph8x0PAx9D2Dv535WBNW1iN7eBt4oQexR9CoqVgrAc13W0vA==} + /@oruga-ui/theme-bulma/0.2.2: + resolution: {integrity: sha512-reMiUyOvSaE7Tg3VrJ6kMhFs7JVNdzQ6UyI511qpqRuCB1b4k6SeAaOs5S2LRInacafOJYaFD7xQCMQV8k8UmA==} dependencies: bulma: 0.9.3 dev: false - /@pinia/testing/0.0.9_pinia@2.0.11+vue@3.2.26: + /@pinia/testing/0.0.9_pinia@2.0.11+vue@3.2.31: resolution: {integrity: sha512-JG+th+BENR89/7vpRxafDApU56AECZ9m+THd8IKsgomyRXaiRRdwt0BLbjStTkksnoNZfZBCz5NszykyNxz/sQ==} peerDependencies: pinia: ~2.0.7 dependencies: - pinia: 2.0.11_typescript@4.5.5+vue@3.2.26 - vue-demi: 0.12.1_vue@3.2.26 + pinia: 2.0.11_typescript@4.5.5+vue@3.2.31 + vue-demi: 0.12.1_vue@3.2.31 transitivePeerDependencies: - '@vue/composition-api' - vue @@ -429,7 +427,7 @@ packages: dependencies: '@types/http-cache-semantics': 4.0.1 '@types/keyv': 3.1.3 - '@types/node': 17.0.13 + '@types/node': 17.0.21 '@types/responselike': 1.0.0 dev: true @@ -451,17 +449,17 @@ packages: resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==} dev: true - /@types/jest/27.4.0: - resolution: {integrity: sha512-gHl8XuC1RZ8H2j5sHv/JqsaxXkDDM9iDOgu0Wp8sjs4u/snb2PVehyWXJPr+ORA0RPpgw231mnutWI1+0hgjIQ==} + /@types/jest/27.4.1: + resolution: {integrity: sha512-23iPJADSmicDVrWk+HT58LMJtzLAnB2AgIzplQuq/bSrGaxCrlvRFjGbXmamnnk/mAmCdLStiGqggu28ocUyiw==} dependencies: - jest-diff: 27.4.6 - pretty-format: 27.4.6 + jest-matcher-utils: 27.5.1 + pretty-format: 27.5.1 dev: true /@types/keyv/3.1.3: resolution: {integrity: sha512-FXCJgyyN3ivVgRoml4h94G/p3kY+u/B86La+QptcqJaWtBWtmc6TtkNfS40n9bIvyLteHh7zXOtgbobORKPbDg==} dependencies: - '@types/node': 17.0.13 + '@types/node': 17.0.21 dev: true /@types/lodash.debounce/4.0.6: @@ -474,8 +472,8 @@ packages: resolution: {integrity: sha512-0d5Wd09ItQWH1qFbEyQ7oTQ3GZrMfth5JkbN3EvTKLXcHLRDSXeLnlvlOn0wvxVIwK5o2M8JzP/OWz7T3NRsbw==} dev: true - /@types/node/17.0.13: - resolution: {integrity: sha512-Y86MAxASe25hNzlDbsviXl8jQHb0RDvKt4c40ZJQ1Don0AAL0STLZSs4N+6gLEO55pedy7r2cLwS+ZDxPm/2Bw==} + /@types/node/17.0.21: + resolution: {integrity: sha512-DBZCJbhII3r90XbQxI8Y9IjjiiOGlZ0Hr32omXIZvwwZ7p4DMMXGrKXVyPfuoBOri9XNtL0UK69jYIBIsRX3QQ==} dev: true /@types/parse-json/4.0.0: @@ -485,7 +483,7 @@ packages: /@types/responselike/1.0.0: resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==} dependencies: - '@types/node': 17.0.13 + '@types/node': 17.0.21 dev: true /@types/semver/7.3.9: @@ -496,166 +494,114 @@ packages: resolution: {integrity: sha512-5eQEtSCoESnh2FsiLTxE121IiE60hnMqcb435fShf4bpLRjEu1Eoekht23y6zXS9Ts3l+Szu3TARnTsA0GkOkQ==} dev: false - /@vitejs/plugin-vue/2.1.0_vite@2.7.13+vue@3.2.26: - resolution: {integrity: sha512-AZ78WxvFMYd8JmM/GBV6a6SGGTU0GgN/0/4T+FnMMsLzFEzTeAUwuraapy50ifHZsC+G5SvWs86bvaCPTneFlA==} + /@vitejs/plugin-vue/2.2.2_vite@2.8.4+vue@3.2.31: + resolution: {integrity: sha512-3C0s45VOwIFEDU+2ownJOpb0zD5fnjXWaHVOLID2R1mYOlAx3doNBFnNbVjaZvpke/L7IdPJXjpyYpXZToDKig==} engines: {node: '>=12.0.0'} peerDependencies: vite: ^2.5.10 vue: ^3.2.25 dependencies: - vite: 2.7.13_sass@1.49.1 - vue: 3.2.26 + vite: 2.8.4_sass@1.49.8 + vue: 3.2.31 dev: false - /@vue/compiler-core/3.2.26: - resolution: {integrity: sha512-N5XNBobZbaASdzY9Lga2D9Lul5vdCIOXvUMd6ThcN8zgqQhPKfCV+wfAJNNJKQkSHudnYRO2gEB+lp0iN3g2Tw==} + /@vue/compiler-core/3.2.31: + resolution: {integrity: sha512-aKno00qoA4o+V/kR6i/pE+aP+esng5siNAVQ422TkBNM6qA4veXiZbSe8OTXHXquEi/f6Akc+nLfB4JGfe4/WQ==} dependencies: - '@babel/parser': 7.16.8 - '@vue/shared': 3.2.26 + '@babel/parser': 7.17.3 + '@vue/shared': 3.2.31 estree-walker: 2.0.2 source-map: 0.6.1 dev: false - /@vue/compiler-core/3.2.29: - resolution: {integrity: sha512-RePZ/J4Ub3sb7atQw6V6Rez+/5LCRHGFlSetT3N4VMrejqJnNPXKUt5AVm/9F5MJriy2w/VudEIvgscCfCWqxw==} + /@vue/compiler-dom/3.2.31: + resolution: {integrity: sha512-60zIlFfzIDf3u91cqfqy9KhCKIJgPeqxgveH2L+87RcGU/alT6BRrk5JtUso0OibH3O7NXuNOQ0cDc9beT0wrg==} dependencies: - '@babel/parser': 7.16.12 - '@vue/shared': 3.2.29 - estree-walker: 2.0.2 - source-map: 0.6.1 + '@vue/compiler-core': 3.2.31 + '@vue/shared': 3.2.31 dev: false - /@vue/compiler-dom/3.2.26: - resolution: {integrity: sha512-smBfaOW6mQDxcT3p9TKT6mE22vjxjJL50GFVJiI0chXYGU/xzC05QRGrW3HHVuJrmLTLx5zBhsZ2dIATERbarg==} + /@vue/compiler-sfc/3.2.31: + resolution: {integrity: sha512-748adc9msSPGzXgibHiO6T7RWgfnDcVQD+VVwYgSsyyY8Ans64tALHZANrKtOzvkwznV/F4H7OAod/jIlp/dkQ==} dependencies: - '@vue/compiler-core': 3.2.26 - '@vue/shared': 3.2.26 - dev: false - - /@vue/compiler-dom/3.2.29: - resolution: {integrity: sha512-y26vK5khdNS9L3ckvkqJk/78qXwWb75Ci8iYLb67AkJuIgyKhIOcR1E8RIt4mswlVCIeI9gQ+fmtdhaiTAtrBQ==} - dependencies: - '@vue/compiler-core': 3.2.29 - '@vue/shared': 3.2.29 - dev: false - - /@vue/compiler-sfc/3.2.26: - resolution: {integrity: sha512-ePpnfktV90UcLdsDQUh2JdiTuhV0Skv2iYXxfNMOK/F3Q+2BO0AulcVcfoksOpTJGmhhfosWfMyEaEf0UaWpIw==} - dependencies: - '@babel/parser': 7.16.8 - '@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 + '@babel/parser': 7.17.3 + '@vue/compiler-core': 3.2.31 + '@vue/compiler-dom': 3.2.31 + '@vue/compiler-ssr': 3.2.31 + '@vue/reactivity-transform': 3.2.31 + '@vue/shared': 3.2.31 estree-walker: 2.0.2 magic-string: 0.25.7 - postcss: 8.4.5 + postcss: 8.4.6 source-map: 0.6.1 dev: false - /@vue/compiler-sfc/3.2.29: - resolution: {integrity: sha512-X9+0dwsag2u6hSOP/XsMYqFti/edvYvxamgBgCcbSYuXx1xLZN+dS/GvQKM4AgGS4djqo0jQvWfIXdfZ2ET68g==} + /@vue/compiler-ssr/3.2.31: + resolution: {integrity: sha512-mjN0rqig+A8TVDnsGPYJM5dpbjlXeHUm2oZHZwGyMYiGT/F4fhJf/cXy8QpjnLQK4Y9Et4GWzHn9PS8AHUnSkw==} dependencies: - '@babel/parser': 7.16.12 - '@vue/compiler-core': 3.2.29 - '@vue/compiler-dom': 3.2.29 - '@vue/compiler-ssr': 3.2.29 - '@vue/reactivity-transform': 3.2.29 - '@vue/shared': 3.2.29 - estree-walker: 2.0.2 - magic-string: 0.25.7 - postcss: 8.4.5 - source-map: 0.6.1 - dev: false - - /@vue/compiler-ssr/3.2.26: - resolution: {integrity: sha512-2mywLX0ODc4Zn8qBoA2PDCsLEZfpUGZcyoFRLSOjyGGK6wDy2/5kyDOWtf0S0UvtoyVq95OTSGIALjZ4k2q/ag==} - dependencies: - '@vue/compiler-dom': 3.2.26 - '@vue/shared': 3.2.26 - dev: false - - /@vue/compiler-ssr/3.2.29: - resolution: {integrity: sha512-LrvQwXlx66uWsB9/VydaaqEpae9xtmlUkeSKF6aPDbzx8M1h7ukxaPjNCAXuFd3fUHblcri8k42lfimHfzMICA==} - dependencies: - '@vue/compiler-dom': 3.2.29 - '@vue/shared': 3.2.29 + '@vue/compiler-dom': 3.2.31 + '@vue/shared': 3.2.31 dev: false /@vue/devtools-api/6.0.0-beta.21.1: resolution: {integrity: sha512-FqC4s3pm35qGVeXRGOjTsRzlkJjrBLriDS9YXbflHLsfA9FrcKzIyWnLXoNm+/7930E8rRakXuAc2QkC50swAw==} dev: false - /@vue/reactivity-transform/3.2.26: - resolution: {integrity: sha512-XKMyuCmzNA7nvFlYhdKwD78rcnmPb7q46uoR00zkX6yZrUmcCQ5OikiwUEVbvNhL5hBJuvbSO95jB5zkUon+eQ==} + /@vue/reactivity-transform/3.2.31: + resolution: {integrity: sha512-uS4l4z/W7wXdI+Va5pgVxBJ345wyGFKvpPYtdSgvfJfX/x2Ymm6ophQlXXB6acqGHtXuBqNyyO3zVp9b1r0MOA==} dependencies: - '@babel/parser': 7.16.8 - '@vue/compiler-core': 3.2.26 - '@vue/shared': 3.2.26 + '@babel/parser': 7.17.3 + '@vue/compiler-core': 3.2.31 + '@vue/shared': 3.2.31 estree-walker: 2.0.2 magic-string: 0.25.7 dev: false - /@vue/reactivity-transform/3.2.29: - resolution: {integrity: sha512-YF6HdOuhdOw6KyRm59+3rML8USb9o8mYM1q+SH0G41K3/q/G7uhPnHGKvspzceD7h9J3VR1waOQ93CUZj7J7OA==} + /@vue/reactivity/3.2.31: + resolution: {integrity: sha512-HVr0l211gbhpEKYr2hYe7hRsV91uIVGFYNHj73njbARVGHQvIojkImKMaZNDdoDZOIkMsBc9a1sMqR+WZwfSCw==} dependencies: - '@babel/parser': 7.16.12 - '@vue/compiler-core': 3.2.29 - '@vue/shared': 3.2.29 - estree-walker: 2.0.2 - magic-string: 0.25.7 + '@vue/shared': 3.2.31 dev: false - /@vue/reactivity/3.2.26: - resolution: {integrity: sha512-h38bxCZLW6oFJVDlCcAiUKFnXI8xP8d+eO0pcDxx+7dQfSPje2AO6M9S9QO6MrxQB7fGP0DH0dYQ8ksf6hrXKQ==} + /@vue/runtime-core/3.2.31: + resolution: {integrity: sha512-Kcog5XmSY7VHFEMuk4+Gap8gUssYMZ2+w+cmGI6OpZWYOEIcbE0TPzzPHi+8XTzAgx1w/ZxDFcXhZeXN5eKWsA==} dependencies: - '@vue/shared': 3.2.26 + '@vue/reactivity': 3.2.31 + '@vue/shared': 3.2.31 dev: false - /@vue/runtime-core/3.2.26: - resolution: {integrity: sha512-BcYi7qZ9Nn+CJDJrHQ6Zsmxei2hDW0L6AB4vPvUQGBm2fZyC0GXd/4nVbyA2ubmuhctD5RbYY8L+5GUJszv9mQ==} + /@vue/runtime-dom/3.2.31: + resolution: {integrity: sha512-N+o0sICVLScUjfLG7u9u5XCjvmsexAiPt17GNnaWHJUfsKed5e85/A3SWgKxzlxx2SW/Hw7RQxzxbXez9PtY3g==} dependencies: - '@vue/reactivity': 3.2.26 - '@vue/shared': 3.2.26 - dev: false - - /@vue/runtime-dom/3.2.26: - resolution: {integrity: sha512-dY56UIiZI+gjc4e8JQBwAifljyexfVCkIAu/WX8snh8vSOt/gMSEGwPRcl2UpYpBYeyExV8WCbgvwWRNt9cHhQ==} - dependencies: - '@vue/runtime-core': 3.2.26 - '@vue/shared': 3.2.26 + '@vue/runtime-core': 3.2.31 + '@vue/shared': 3.2.31 csstype: 2.6.19 dev: false - /@vue/server-renderer/3.2.26_vue@3.2.26: - resolution: {integrity: sha512-Jp5SggDUvvUYSBIvYEhy76t4nr1vapY/FIFloWmQzn7UxqaHrrBpbxrqPcTrSgGrcaglj0VBp22BKJNre4aA1w==} + /@vue/server-renderer/3.2.31_vue@3.2.31: + resolution: {integrity: sha512-8CN3Zj2HyR2LQQBHZ61HexF5NReqngLT3oahyiVRfSSvak+oAvVmu8iNLSu6XR77Ili2AOpnAt1y8ywjjqtmkg==} peerDependencies: - vue: 3.2.26 + vue: 3.2.31 dependencies: - '@vue/compiler-ssr': 3.2.26 - '@vue/shared': 3.2.26 - vue: 3.2.26 + '@vue/compiler-ssr': 3.2.31 + '@vue/shared': 3.2.31 + vue: 3.2.31 dev: false - /@vue/shared/3.2.26: - resolution: {integrity: sha512-vPV6Cq+NIWbH5pZu+V+2QHE9y1qfuTq49uNWw4f7FDEeZaDU2H2cx5jcUZOAKW7qTrUS4k6qZPbMy1x4N96nbA==} + /@vue/shared/3.2.31: + resolution: {integrity: sha512-ymN2pj6zEjiKJZbrf98UM2pfDd6F2H7ksKw7NDt/ZZ1fh5Ei39X5tABugtT03ZRlWd9imccoK0hE8hpjpU7irQ==} dev: false - /@vue/shared/3.2.29: - resolution: {integrity: sha512-BjNpU8OK6Z0LVzGUppEk0CMYm/hKDnZfYdjSmPOs0N+TR1cLKJAkDwW8ASZUvaaSLEi6d3hVM7jnWnX+6yWnHw==} - dev: false - - /@vue/test-utils/2.0.0-rc.18_vue@3.2.26: + /@vue/test-utils/2.0.0-rc.18_vue@3.2.31: resolution: {integrity: sha512-aifolXjVdsogjaLmDoZ0FU8vN+R67aWmg9OuVeED4w5Ij5GFQLrlhM19uhWe/r5xXUL4fXMk3pX5wW6FJP1NcQ==} peerDependencies: vue: ^3.0.1 dependencies: - vue: 3.2.26 + vue: 3.2.31 dev: true - /@vueuse/core/7.5.5_vue@3.2.26: - resolution: {integrity: sha512-RBDqmIoGfak4h3xdXa/Av+ibkb8NY044wEy6+PG2FAWNaID8/FkqmSFjbxogrbmpSX1yZ1PBHrM8DUp/FrIpbg==} + /@vueuse/core/7.6.2_vue@3.2.31: + resolution: {integrity: sha512-bjAbXJVJO6aElMaZtDz2B70C0L6jFk/jGVqJxWZS5huffxA6dW5DN6tQQJwzOnx9B9rDhePHJIFKsix0qZIH2Q==} peerDependencies: '@vue/composition-api': ^1.1.0 vue: ^2.6.0 || ^3.2.0 @@ -665,13 +611,13 @@ packages: vue: optional: true dependencies: - '@vueuse/shared': 7.5.5_vue@3.2.26 - vue: 3.2.26 - vue-demi: 0.12.1_vue@3.2.26 + '@vueuse/shared': 7.6.2_vue@3.2.31 + vue: 3.2.31 + vue-demi: 0.12.1_vue@3.2.31 dev: false - /@vueuse/shared/7.5.5_vue@3.2.26: - resolution: {integrity: sha512-mzzTsotHQRPnPAChy8iCv6ek/90CKYhAFyMRgNsMxpT0afZJkbMO/X0OaOu/1NuGbgb8UVjlsWKmCUgKTOF5hA==} + /@vueuse/shared/7.6.2_vue@3.2.31: + resolution: {integrity: sha512-ThDld4Mx501tahRuHV6qJGkwCr17GknZrOzlD02Na9qJcH7Pq0quNTLx5cNDou7b1CKNvE3BXi2w/hz9KuPNTQ==} peerDependencies: '@vue/composition-api': ^1.1.0 vue: ^2.6.0 || ^3.2.0 @@ -681,8 +627,8 @@ packages: vue: optional: true dependencies: - vue: 3.2.26 - vue-demi: 0.12.1_vue@3.2.26 + vue: 3.2.31 + vue-demi: 0.12.1_vue@3.2.31 dev: false /abab/2.0.5: @@ -939,7 +885,7 @@ packages: clone-response: 1.0.2 get-stream: 5.2.0 http-cache-semantics: 4.1.0 - keyv: 4.0.5 + keyv: 4.1.1 lowercase-keys: 2.0.0 normalize-url: 6.1.0 responselike: 2.0.0 @@ -970,7 +916,7 @@ packages: check-error: 1.0.2 deep-eql: 3.0.1 get-func-name: 2.0.0 - loupe: 2.3.1 + loupe: 2.3.4 pathval: 1.1.1 type-detect: 4.0.8 dev: true @@ -1329,8 +1275,8 @@ packages: resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==} dev: true - /diff-sequences/27.4.0: - resolution: {integrity: sha512-YqiQzkrsmHMH5uuh8OdQFU9/ZpADnwzml8z0O5HvRNda+5UZsaX/xN+AAxfR2hWq1Y7HZnAzO9J5lJXOuDz2Ww==} + /diff-sequences/27.5.1: + resolution: {integrity: sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dev: true @@ -1437,147 +1383,183 @@ packages: is-symbol: 1.0.4 dev: true - /esbuild-android-arm64/0.13.15: - resolution: {integrity: sha512-m602nft/XXeO8YQPUDVoHfjyRVPdPgjyyXOxZ44MK/agewFFkPa8tUo6lAzSWh5Ui5PB4KR9UIFTSBKh/RrCmg==} + /esbuild-android-arm64/0.14.23: + resolution: {integrity: sha512-k9sXem++mINrZty1v4FVt6nC5BQCFG4K2geCIUUqHNlTdFnuvcqsY7prcKZLFhqVC1rbcJAr9VSUGFL/vD4vsw==} + engines: {node: '>=12'} cpu: [arm64] os: [android] requiresBuild: true optional: true - /esbuild-darwin-64/0.13.15: - resolution: {integrity: sha512-ihOQRGs2yyp7t5bArCwnvn2Atr6X4axqPpEdCFPVp7iUj4cVSdisgvEKdNR7yH3JDjW6aQDw40iQFoTqejqxvQ==} + /esbuild-darwin-64/0.14.23: + resolution: {integrity: sha512-lB0XRbtOYYL1tLcYw8BoBaYsFYiR48RPrA0KfA/7RFTr4MV7Bwy/J4+7nLsVnv9FGuQummM3uJ93J3ptaTqFug==} + engines: {node: '>=12'} cpu: [x64] os: [darwin] requiresBuild: true optional: true - /esbuild-darwin-arm64/0.13.15: - resolution: {integrity: sha512-i1FZssTVxUqNlJ6cBTj5YQj4imWy3m49RZRnHhLpefFIh0To05ow9DTrXROTE1urGTQCloFUXTX8QfGJy1P8dQ==} + /esbuild-darwin-arm64/0.14.23: + resolution: {integrity: sha512-yat73Z/uJ5tRcfRiI4CCTv0FSnwErm3BJQeZAh+1tIP0TUNh6o+mXg338Zl5EKChD+YGp6PN+Dbhs7qa34RxSw==} + engines: {node: '>=12'} cpu: [arm64] os: [darwin] requiresBuild: true optional: true - /esbuild-freebsd-64/0.13.15: - resolution: {integrity: sha512-G3dLBXUI6lC6Z09/x+WtXBXbOYQZ0E8TDBqvn7aMaOCzryJs8LyVXKY4CPnHFXZAbSwkCbqiPuSQ1+HhrNk7EA==} + /esbuild-freebsd-64/0.14.23: + resolution: {integrity: sha512-/1xiTjoLuQ+LlbfjJdKkX45qK/M7ARrbLmyf7x3JhyQGMjcxRYVR6Dw81uH3qlMHwT4cfLW4aEVBhP1aNV7VsA==} + engines: {node: '>=12'} cpu: [x64] os: [freebsd] requiresBuild: true optional: true - /esbuild-freebsd-arm64/0.13.15: - resolution: {integrity: sha512-KJx0fzEDf1uhNOZQStV4ujg30WlnwqUASaGSFPhznLM/bbheu9HhqZ6mJJZM32lkyfGJikw0jg7v3S0oAvtvQQ==} + /esbuild-freebsd-arm64/0.14.23: + resolution: {integrity: sha512-uyPqBU/Zcp6yEAZS4LKj5jEE0q2s4HmlMBIPzbW6cTunZ8cyvjG6YWpIZXb1KK3KTJDe62ltCrk3VzmWHp+iLg==} + engines: {node: '>=12'} cpu: [arm64] os: [freebsd] requiresBuild: true optional: true - /esbuild-linux-32/0.13.15: - resolution: {integrity: sha512-ZvTBPk0YWCLMCXiFmD5EUtB30zIPvC5Itxz0mdTu/xZBbbHJftQgLWY49wEPSn2T/TxahYCRDWun5smRa0Tu+g==} + /esbuild-linux-32/0.14.23: + resolution: {integrity: sha512-37R/WMkQyUfNhbH7aJrr1uCjDVdnPeTHGeDhZPUNhfoHV0lQuZNCKuNnDvlH/u/nwIYZNdVvz1Igv5rY/zfrzQ==} + engines: {node: '>=12'} cpu: [ia32] os: [linux] requiresBuild: true optional: true - /esbuild-linux-64/0.13.15: - resolution: {integrity: sha512-eCKzkNSLywNeQTRBxJRQ0jxRCl2YWdMB3+PkWFo2BBQYC5mISLIVIjThNtn6HUNqua1pnvgP5xX0nHbZbPj5oA==} + /esbuild-linux-64/0.14.23: + resolution: {integrity: sha512-H0gztDP60qqr8zoFhAO64waoN5yBXkmYCElFklpd6LPoobtNGNnDe99xOQm28+fuD75YJ7GKHzp/MLCLhw2+vQ==} + engines: {node: '>=12'} cpu: [x64] os: [linux] requiresBuild: true optional: true - /esbuild-linux-arm/0.13.15: - resolution: {integrity: sha512-wUHttDi/ol0tD8ZgUMDH8Ef7IbDX+/UsWJOXaAyTdkT7Yy9ZBqPg8bgB/Dn3CZ9SBpNieozrPRHm0BGww7W/jA==} + /esbuild-linux-arm/0.14.23: + resolution: {integrity: sha512-x64CEUxi8+EzOAIpCUeuni0bZfzPw/65r8tC5cy5zOq9dY7ysOi5EVQHnzaxS+1NmV+/RVRpmrzGw1QgY2Xpmw==} + engines: {node: '>=12'} cpu: [arm] os: [linux] requiresBuild: true optional: true - /esbuild-linux-arm64/0.13.15: - resolution: {integrity: sha512-bYpuUlN6qYU9slzr/ltyLTR9YTBS7qUDymO8SV7kjeNext61OdmqFAzuVZom+OLW1HPHseBfJ/JfdSlx8oTUoA==} + /esbuild-linux-arm64/0.14.23: + resolution: {integrity: sha512-c4MLOIByNHR55n3KoYf9hYDfBRghMjOiHLaoYLhkQkIabb452RWi+HsNgB41sUpSlOAqfpqKPFNg7VrxL3UX9g==} + engines: {node: '>=12'} cpu: [arm64] os: [linux] requiresBuild: true optional: true - /esbuild-linux-mips64le/0.13.15: - resolution: {integrity: sha512-KlVjIG828uFPyJkO/8gKwy9RbXhCEUeFsCGOJBepUlpa7G8/SeZgncUEz/tOOUJTcWMTmFMtdd3GElGyAtbSWg==} + /esbuild-linux-mips64le/0.14.23: + resolution: {integrity: sha512-kHKyKRIAedYhKug2EJpyJxOUj3VYuamOVA1pY7EimoFPzaF3NeY7e4cFBAISC/Av0/tiV0xlFCt9q0HJ68IBIw==} + engines: {node: '>=12'} cpu: [mips64el] os: [linux] requiresBuild: true optional: true - /esbuild-linux-ppc64le/0.13.15: - resolution: {integrity: sha512-h6gYF+OsaqEuBjeesTBtUPw0bmiDu7eAeuc2OEH9S6mV9/jPhPdhOWzdeshb0BskRZxPhxPOjqZ+/OqLcxQwEQ==} + /esbuild-linux-ppc64le/0.14.23: + resolution: {integrity: sha512-7ilAiJEPuJJnJp/LiDO0oJm5ygbBPzhchJJh9HsHZzeqO+3PUzItXi+8PuicY08r0AaaOe25LA7sGJ0MzbfBag==} + engines: {node: '>=12'} cpu: [ppc64] os: [linux] requiresBuild: true optional: true - /esbuild-netbsd-64/0.13.15: - resolution: {integrity: sha512-3+yE9emwoevLMyvu+iR3rsa+Xwhie7ZEHMGDQ6dkqP/ndFzRHkobHUKTe+NCApSqG5ce2z4rFu+NX/UHnxlh3w==} + /esbuild-linux-riscv64/0.14.23: + resolution: {integrity: sha512-fbL3ggK2wY0D8I5raPIMPhpCvODFE+Bhb5QGtNP3r5aUsRR6TQV+ZBXIaw84iyvKC8vlXiA4fWLGhghAd/h/Zg==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + requiresBuild: true + optional: true + + /esbuild-linux-s390x/0.14.23: + resolution: {integrity: sha512-GHMDCyfy7+FaNSO8RJ8KCFsnax8fLUsOrj9q5Gi2JmZMY0Zhp75keb5abTFCq2/Oy6KVcT0Dcbyo/bFb4rIFJA==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + requiresBuild: true + optional: true + + /esbuild-netbsd-64/0.14.23: + resolution: {integrity: sha512-ovk2EX+3rrO1M2lowJfgMb/JPN1VwVYrx0QPUyudxkxLYrWeBxDKQvc6ffO+kB4QlDyTfdtAURrVzu3JeNdA2g==} + engines: {node: '>=12'} cpu: [x64] os: [netbsd] requiresBuild: true optional: true - /esbuild-openbsd-64/0.13.15: - resolution: {integrity: sha512-wTfvtwYJYAFL1fSs8yHIdf5GEE4NkbtbXtjLWjM3Cw8mmQKqsg8kTiqJ9NJQe5NX/5Qlo7Xd9r1yKMMkHllp5g==} + /esbuild-openbsd-64/0.14.23: + resolution: {integrity: sha512-uYYNqbVR+i7k8ojP/oIROAHO9lATLN7H2QeXKt2H310Fc8FJj4y3Wce6hx0VgnJ4k1JDrgbbiXM8rbEgQyg8KA==} + engines: {node: '>=12'} cpu: [x64] os: [openbsd] requiresBuild: true optional: true - /esbuild-sunos-64/0.13.15: - resolution: {integrity: sha512-lbivT9Bx3t1iWWrSnGyBP9ODriEvWDRiweAs69vI+miJoeKwHWOComSRukttbuzjZ8r1q0mQJ8Z7yUsDJ3hKdw==} + /esbuild-sunos-64/0.14.23: + resolution: {integrity: sha512-hAzeBeET0+SbScknPzS2LBY6FVDpgE+CsHSpe6CEoR51PApdn2IB0SyJX7vGelXzlyrnorM4CAsRyb9Qev4h9g==} + engines: {node: '>=12'} cpu: [x64] os: [sunos] requiresBuild: true optional: true - /esbuild-windows-32/0.13.15: - resolution: {integrity: sha512-fDMEf2g3SsJ599MBr50cY5ve5lP1wyVwTe6aLJsM01KtxyKkB4UT+fc5MXQFn3RLrAIAZOG+tHC+yXObpSn7Nw==} + /esbuild-windows-32/0.14.23: + resolution: {integrity: sha512-Kttmi3JnohdaREbk6o9e25kieJR379TsEWF0l39PQVHXq3FR6sFKtVPgY8wk055o6IB+rllrzLnbqOw/UV60EA==} + engines: {node: '>=12'} cpu: [ia32] os: [win32] requiresBuild: true optional: true - /esbuild-windows-64/0.13.15: - resolution: {integrity: sha512-9aMsPRGDWCd3bGjUIKG/ZOJPKsiztlxl/Q3C1XDswO6eNX/Jtwu4M+jb6YDH9hRSUflQWX0XKAfWzgy5Wk54JQ==} + /esbuild-windows-64/0.14.23: + resolution: {integrity: sha512-JtIT0t8ymkpl6YlmOl6zoSWL5cnCgyLaBdf/SiU/Eg3C13r0NbHZWNT/RDEMKK91Y6t79kTs3vyRcNZbfu5a8g==} + engines: {node: '>=12'} cpu: [x64] os: [win32] requiresBuild: true optional: true - /esbuild-windows-arm64/0.13.15: - resolution: {integrity: sha512-zzvyCVVpbwQQATaf3IG8mu1IwGEiDxKkYUdA4FpoCHi1KtPa13jeScYDjlW0Qh+ebWzpKfR2ZwvqAQkSWNcKjA==} + /esbuild-windows-arm64/0.14.23: + resolution: {integrity: sha512-cTFaQqT2+ik9e4hePvYtRZQ3pqOvKDVNarzql0VFIzhc0tru/ZgdLoXd6epLiKT+SzoSce6V9YJ+nn6RCn6SHw==} + engines: {node: '>=12'} cpu: [arm64] os: [win32] requiresBuild: true optional: true - /esbuild/0.13.15: - resolution: {integrity: sha512-raCxt02HBKv8RJxE8vkTSCXGIyKHdEdGfUmiYb8wnabnaEmHzyW7DCHb5tEN0xU8ryqg5xw54mcwnYkC4x3AIw==} + /esbuild/0.14.23: + resolution: {integrity: sha512-XjnIcZ9KB6lfonCa+jRguXyRYcldmkyZ99ieDksqW/C8bnyEX299yA4QH2XcgijCgaddEZePPTgvx/2imsq7Ig==} + engines: {node: '>=12'} hasBin: true requiresBuild: true optionalDependencies: - esbuild-android-arm64: 0.13.15 - esbuild-darwin-64: 0.13.15 - esbuild-darwin-arm64: 0.13.15 - esbuild-freebsd-64: 0.13.15 - esbuild-freebsd-arm64: 0.13.15 - esbuild-linux-32: 0.13.15 - esbuild-linux-64: 0.13.15 - esbuild-linux-arm: 0.13.15 - esbuild-linux-arm64: 0.13.15 - esbuild-linux-mips64le: 0.13.15 - esbuild-linux-ppc64le: 0.13.15 - esbuild-netbsd-64: 0.13.15 - esbuild-openbsd-64: 0.13.15 - esbuild-sunos-64: 0.13.15 - esbuild-windows-32: 0.13.15 - esbuild-windows-64: 0.13.15 - esbuild-windows-arm64: 0.13.15 + esbuild-android-arm64: 0.14.23 + esbuild-darwin-64: 0.14.23 + esbuild-darwin-arm64: 0.14.23 + esbuild-freebsd-64: 0.14.23 + esbuild-freebsd-arm64: 0.14.23 + esbuild-linux-32: 0.14.23 + esbuild-linux-64: 0.14.23 + esbuild-linux-arm: 0.14.23 + esbuild-linux-arm64: 0.14.23 + esbuild-linux-mips64le: 0.14.23 + esbuild-linux-ppc64le: 0.14.23 + esbuild-linux-riscv64: 0.14.23 + esbuild-linux-s390x: 0.14.23 + esbuild-netbsd-64: 0.14.23 + esbuild-openbsd-64: 0.14.23 + esbuild-sunos-64: 0.14.23 + esbuild-windows-32: 0.14.23 + esbuild-windows-64: 0.14.23 + esbuild-windows-arm64: 0.14.23 /escalade/3.1.1: resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} @@ -1642,7 +1624,7 @@ packages: merge-stream: 2.0.0 npm-run-path: 4.0.1 onetime: 5.1.2 - signal-exit: 3.0.6 + signal-exit: 3.0.7 strip-final-newline: 2.0.0 dev: true @@ -1657,7 +1639,7 @@ packages: merge-stream: 2.0.0 npm-run-path: 4.0.1 onetime: 5.1.2 - signal-exit: 3.0.6 + signal-exit: 3.0.7 strip-final-newline: 2.0.0 /extend-shallow/2.0.1: @@ -1751,8 +1733,8 @@ packages: /function-bind/1.1.1: resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} - /fuzzysort/1.1.4: - resolution: {integrity: sha512-JzK/lHjVZ6joAg3OnCjylwYXYVjRiwTY6Yb25LvfpJHK8bjisfnZJ5bY8aVWwTwCXgxPNgLAtmHL+Hs5q1ddLQ==} + /fuzzysort/1.2.1: + resolution: {integrity: sha512-egTSF3U6H6T9tXtAhEm5P5guSSDjd96/NUWrbmoGlIu3ATMdXra13gwQdEFRY6ehsFe8xec7UnQz+k34CGWCIg==} dev: false /get-caller-file/2.0.5: @@ -2087,7 +2069,7 @@ packages: mute-stream: 0.0.8 ora: 5.4.1 run-async: 2.4.1 - rxjs: 7.5.2 + rxjs: 7.5.4 string-width: 4.2.3 strip-ansi: 6.0.1 through: 2.3.8 @@ -2343,21 +2325,31 @@ packages: istanbul-lib-report: 3.0.0 dev: true - /jest-diff/27.4.6: - resolution: {integrity: sha512-zjaB0sh0Lb13VyPsd92V7HkqF6yKRH9vm33rwBt7rPYrpQvS1nCvlIy2pICbKta+ZjWngYLNn4cCK4nyZkjS/w==} + /jest-diff/27.5.1: + resolution: {integrity: sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: chalk: 4.1.2 - diff-sequences: 27.4.0 - jest-get-type: 27.4.0 - pretty-format: 27.4.6 + diff-sequences: 27.5.1 + jest-get-type: 27.5.1 + pretty-format: 27.5.1 dev: true - /jest-get-type/27.4.0: - resolution: {integrity: sha512-tk9o+ld5TWq41DkK14L4wox4s2D9MtTpKaAVzXfr5CUKm5ZK2ExcaFE0qls2W71zE/6R2TxxrK9w2r6svAFDBQ==} + /jest-get-type/27.5.1: + resolution: {integrity: sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dev: true + /jest-matcher-utils/27.5.1: + resolution: {integrity: sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + dependencies: + chalk: 4.1.2 + jest-diff: 27.5.1 + jest-get-type: 27.5.1 + pretty-format: 27.5.1 + dev: true + /jest-serializer-vue/2.0.2: resolution: {integrity: sha1-sjjvKGNX7GtIBCG9RxRQUJh9WbM=} dependencies: @@ -2443,8 +2435,8 @@ packages: json-buffer: 3.0.0 dev: true - /keyv/4.0.5: - resolution: {integrity: sha512-531pkGLqV3BMg0eDqqJFI0R1mkK1Nm5xIP2mM6keP5P8WfFtCkg2IOwplTUmlGoTgIg9yQYZ/kdihhz89XH3vA==} + /keyv/4.1.1: + resolution: {integrity: sha512-tGv1yP6snQVDSM4X6yxrv2zzq/EvpW+oYiUz6aueW1u9CtS8RzUQYxxmFwgZlO2jSgCxQbchhxaqXXp2hnKGpQ==} dependencies: json-buffer: 3.0.1 dev: true @@ -2484,8 +2476,8 @@ packages: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} dev: true - /lint-staged/12.3.2: - resolution: {integrity: sha512-gtw4Cbj01SuVSfAOXC6ivd/7VKHTj51yj5xV8TgktFmYNMsZzXuSd5/brqJEA93v63wL7R6iDlunMANOechC0A==} + /lint-staged/12.3.4: + resolution: {integrity: sha512-yv/iK4WwZ7/v0GtVkNb3R82pdL9M+ScpIbJLJNyCXkJ1FGaXvRCOg/SeL59SZtPpqZhE7BD6kPKFLIDUhDx2/w==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} hasBin: true dependencies: @@ -2495,7 +2487,7 @@ packages: debug: 4.3.3_supports-color@9.2.1 execa: 5.1.1 lilconfig: 2.0.4 - listr2: 4.0.2 + listr2: 4.0.4 micromatch: 4.0.4 normalize-path: 3.0.0 object-inspect: 1.12.0 @@ -2506,8 +2498,8 @@ packages: - enquirer dev: true - /listr2/4.0.2: - resolution: {integrity: sha512-YcgwfCWpvPbj9FLUGqvdFvd3hrFWKpOeuXznRgfWEJ7RNr8b/IKKIKZABHx3aU+4CWN/iSAFFSReziQG6vTeIA==} + /listr2/4.0.4: + resolution: {integrity: sha512-vJOm5KD6uZXjSsrwajr+mNacIjf87gWvlBEltPWLbTkslUscWAzquyK4xfe9Zd4RDgO5nnwFyV06FC+uVR+5mg==} engines: {node: '>=12'} peerDependencies: enquirer: '>= 2.3.0 < 3' @@ -2520,7 +2512,7 @@ packages: log-update: 4.0.0 p-map: 4.0.0 rfdc: 1.3.0 - rxjs: 7.5.2 + rxjs: 7.5.4 through: 2.3.8 wrap-ansi: 7.0.0 dev: true @@ -2571,8 +2563,8 @@ packages: wrap-ansi: 6.2.0 dev: true - /loupe/2.3.1: - resolution: {integrity: sha512-EN1D3jyVmaX4tnajVlfbREU4axL647hLec1h/PXAb8CPDMJiYitcWF2UeLVNttRqaIqQs4x+mRvXf+d+TlDrCA==} + /loupe/2.3.4: + resolution: {integrity: sha512-OvKfgCC2Ndby6aSTREl5aCCPTNIzlDfQZvZxNUrBrihDhL3xcrYegTblhmEiCrg2kKQz4XsFIaemE5BF4ybSaQ==} dependencies: get-func-name: 2.0.0 dev: true @@ -2671,6 +2663,13 @@ packages: resolution: {integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==} dependencies: brace-expansion: 1.1.11 + dev: true + + /minimatch/3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + dependencies: + brace-expansion: 1.1.11 + dev: false /minimist/1.2.5: resolution: {integrity: sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==} @@ -2683,8 +2682,8 @@ packages: resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} dev: true - /nanoid/3.2.0: - resolution: {integrity: sha512-fmsZYa9lpn69Ad5eDn7FMcnnSR+8R34W9qJEijxYhTbfOWzr22n1QxCMzXLK+ODyW2973V3Fux959iQoUxzUIA==} + /nanoid/3.3.1: + resolution: {integrity: sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw==} engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true @@ -2988,7 +2987,7 @@ packages: engines: {node: '>=4'} dev: true - /pinia/2.0.11_typescript@4.5.5+vue@3.2.26: + /pinia/2.0.11_typescript@4.5.5+vue@3.2.31: resolution: {integrity: sha512-JzcmnMqu28PNWOjDgEDK6fTrIzX8eQZKPPKvu/fpHdpXARUj1xeVdFi3YFIMOWswqaBd589cpmAMdSSTryI9iw==} peerDependencies: '@vue/composition-api': ^1.4.0 @@ -3002,15 +3001,15 @@ packages: dependencies: '@vue/devtools-api': 6.0.0-beta.21.1 typescript: 4.5.5 - vue: 3.2.26 - vue-demi: 0.12.1_vue@3.2.26 + vue: 3.2.31 + vue-demi: 0.12.1_vue@3.2.31 dev: false - /postcss/8.4.5: - resolution: {integrity: sha512-jBDboWM8qpaqwkMwItqTQTiFikhs/67OYVvblFFTM7MrZjt6yMKd6r2kgXizEbTTljacm4NldIlZnhbjr84QYg==} + /postcss/8.4.6: + resolution: {integrity: sha512-OovjwIzs9Te46vlEx7+uXB0PLijpwjXGKXjVGGPIGubGpq7uh5Xgf6D6FiJ/SzJMBosHDp6a2hiXOS97iBXcaA==} engines: {node: ^10 || ^12 || >=14} dependencies: - nanoid: 3.2.0 + nanoid: 3.3.1 picocolors: 1.0.0 source-map-js: 1.0.2 @@ -3030,8 +3029,8 @@ packages: hasBin: true dev: true - /pretty-format/27.4.6: - resolution: {integrity: sha512-NblstegA1y/RJW2VyML+3LlpFjzx62cUrtBIKIWDXEDkjNeleA7Od7nrzcs/VLQvAeV4CgSYhrN39DRN88Qi/g==} + /pretty-format/27.5.1: + resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: ansi-regex: 5.0.1 @@ -3168,8 +3167,8 @@ packages: rc: 1.2.8 dev: true - /release-it/14.12.4: - resolution: {integrity: sha512-lqf9PMsj7ycCqFHGag8Uv7cE1hNsKa+yKUMe+Fkh9fdOfxu2F01On+YUefRCP0DuQthmr/WyLCYdrjThMEkWFQ==} + /release-it/14.12.5: + resolution: {integrity: sha512-mGFbbX8eEKMOhfjq5mZAgGppT8CME1T+vj6xA5tAPYSCuPpcNEDjqiG1tJfPy/XImZI4uS3U6pNP5KyDpy9etg==} engines: {node: '>=10'} hasBin: true dependencies: @@ -3225,15 +3224,6 @@ packages: engines: {node: '>=8'} dev: true - /resolve/1.21.0: - resolution: {integrity: sha512-3wCbTpk5WJlyE4mSOtDLhqQmGFi0/TD9VPwmiolnk8U0wRgMEktqCXd3vy5buTO3tljvalNvKrjHEfrd2WpEKA==} - hasBin: true - dependencies: - is-core-module: 2.8.1 - path-parse: 1.0.7 - supports-preserve-symlinks-flag: 1.0.0 - dev: false - /resolve/1.22.0: resolution: {integrity: sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==} hasBin: true @@ -3259,7 +3249,7 @@ packages: engines: {node: '>=8'} dependencies: onetime: 5.1.2 - signal-exit: 3.0.6 + signal-exit: 3.0.7 dev: true /retry/0.13.1: @@ -3282,8 +3272,8 @@ packages: glob: 7.2.0 dev: true - /rollup/2.66.0: - resolution: {integrity: sha512-L6mKOkdyP8HK5kKJXaiWG7KZDumPJjuo1P+cfyHOJPNNTK3Moe7zCH5+fy7v8pVmHXtlxorzaBjvkBMB23s98g==} + /rollup/2.68.0: + resolution: {integrity: sha512-XrMKOYK7oQcTio4wyTz466mucnd8LzkiZLozZ4Rz0zQD+HeX4nUK4B8GrTX/2EvN2/vBF/i2WnaXboPxo0JylA==} engines: {node: '>=10.0.0'} hasBin: true optionalDependencies: @@ -3299,8 +3289,8 @@ packages: dependencies: queue-microtask: 1.2.3 - /rxjs/7.5.2: - resolution: {integrity: sha512-PwDt186XaL3QN5qXj/H9DGyHhP3/RYYgZZwqBv9Tv8rsAaiwFH1IsJJlcgD37J7UW5a6O67qX0KWKS3/pu0m4w==} + /rxjs/7.5.4: + resolution: {integrity: sha512-h5M3Hk78r6wAheJF0a5YahB1yRQKCsZ4MsGdZ5O9ETbVtjPcScGfrMmoOq7EBsCRzd4BDkvDJ7ogP8Sz5tTFiQ==} dependencies: tslib: 2.3.1 dev: true @@ -3317,8 +3307,8 @@ packages: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} dev: true - /sass/1.49.1: - resolution: {integrity: sha512-VF/Ov0LVmcQeeScqAc6NVodjtE1mrXbSutEFKYmiyS/9WL1mKPFpZ9kJHha/D6t4ofWWpCDvk1B75lfu+cF1XQ==} + /sass/1.49.8: + resolution: {integrity: sha512-NoGOjvDDOU9og9oAxhRnap71QaTjjlzrvLnKecUJ3GxhaQBrV6e7gPuSPF28u1OcVAArVojPAe4ZhOXwwC4tGw==} engines: {node: '>=12.0.0'} hasBin: true dependencies: @@ -3408,6 +3398,10 @@ packages: /signal-exit/3.0.6: resolution: {integrity: sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ==} + dev: true + + /signal-exit/3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} /slash/3.0.0: resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} @@ -3484,8 +3478,8 @@ packages: engines: {node: '>=6'} dev: true - /splitpanes/3.0.6: - resolution: {integrity: sha512-Ogxc+e2te4Tp5IpMwjOPO1ZvXUf2PsuEoyZhF9H5Hp6XOB0mLg/OnEZFaK2MxT7Q3O+WSEKE7CeOoTC+4zsQ6A==} + /splitpanes/3.1.1: + resolution: {integrity: sha512-VUkxDJfIGSvTM/fm/+OSrx8ha9URwE/9B8FPvfzoBuAxVELIHBWpsfnJXIXv77zVwuex//QQL4kTU9SDBPeHjA==} dev: false /strict-uri-encode/2.0.0: @@ -3613,13 +3607,13 @@ packages: resolution: {integrity: sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=} dev: true - /tinypool/0.1.1: - resolution: {integrity: sha512-sW2fQZ2BRb/GX5v55NkHiTrbMLx0eX0xNpP+VGhOe2f7Oo04+LeClDyM19zCE/WCy7jJ8kzIJ0Ojrxj3UhN9Sg==} + /tinypool/0.1.2: + resolution: {integrity: sha512-fvtYGXoui2RpeMILfkvGIgOVkzJEGediv8UJt7TxdAOY8pnvUkFg/fkvqTfXG9Acc9S17Cnn1S4osDc2164guA==} engines: {node: '>=14.0.0'} dev: true - /tinyspy/0.2.10: - resolution: {integrity: sha512-Qij6rGWCDjWIejxCXXVi6bNgvrYBp3PbqC4cBP/0fD6WHDOHCw09Zd13CsxrDqSR5PFq01WeqDws8t5lz5sH0A==} + /tinyspy/0.3.0: + resolution: {integrity: sha512-c5uFHqtUp74R2DJE3/Efg0mH5xicmgziaQXMm/LvuuZn3RdpADH32aEGDRyCzObXT1DNfwDMqRQ/Drh1MlO12g==} engines: {node: '>=14.0.0'} dev: true @@ -3661,8 +3655,8 @@ packages: punycode: 2.1.1 dev: true - /ts-node/10.4.0_40146b36d18138e3202fbb722e5f65e4: - resolution: {integrity: sha512-g0FlPvvCXSIO1JDF6S232P5jPYqBkRL9qly81ZgAOSU7rwI0stphCgd2kLiCrU9DjQCrJMWEqcNSjQL02s6d8A==} + /ts-node/10.5.0_99a448058f874aec2a353d0e974167cc: + resolution: {integrity: sha512-6kEJKwVxAJ35W4akuiysfKwKmjkbYxwQMTBaAxo9KKAx/Yd26mPUyhGz3ji+EsJoAgrLqVsYHNuuYwQe22lbtw==} hasBin: true peerDependencies: '@swc/core': '>=1.2.50' @@ -3680,7 +3674,7 @@ packages: '@tsconfig/node12': 1.0.9 '@tsconfig/node14': 1.0.1 '@tsconfig/node16': 1.0.2 - '@types/node': 17.0.13 + '@types/node': 17.0.21 acorn: 8.7.0 acorn-walk: 8.2.0 arg: 4.1.3 @@ -3688,6 +3682,7 @@ packages: diff: 4.0.2 make-error: 1.3.6 typescript: 4.5.5 + v8-compile-cache-lib: 3.0.0 yn: 3.1.1 dev: true @@ -3759,8 +3754,8 @@ packages: engines: {node: '>= 4.0.0'} dev: true - /unplugin-auto-import/0.5.11_@vueuse+core@7.5.5+vite@2.7.13: - resolution: {integrity: sha512-MJ3POLe/IysRHF4yd32FkKDoxqSRoiuIHm89ys67B8FLuz2Pvh9poeqTVe6IhJsNxwv0+GSdFfj5Dpq24lhm4g==} + /unplugin-auto-import/0.6.1_@vueuse+core@7.6.2+vite@2.8.4: + resolution: {integrity: sha512-rSukyyROmSkqL9tjkA88oLhpG4tXYkk2rTpqGaYKjXRNktHEKf03pit8bamPt95KPVfMLjT0+TPKi6ju0toOIw==} engines: {node: '>=14'} peerDependencies: '@vueuse/core': '*' @@ -3768,13 +3763,13 @@ packages: '@vueuse/core': optional: true dependencies: - '@antfu/utils': 0.4.0 + '@antfu/utils': 0.5.0 '@rollup/pluginutils': 4.1.2 - '@vueuse/core': 7.5.5_vue@3.2.26 + '@vueuse/core': 7.6.2_vue@3.2.31 local-pkg: 0.4.1 magic-string: 0.25.7 - resolve: 1.21.0 - unplugin: 0.3.0_vite@2.7.13 + resolve: 1.22.0 + unplugin: 0.3.2_vite@2.8.4 transitivePeerDependencies: - esbuild - rollup @@ -3782,10 +3777,10 @@ packages: - webpack dev: false - /unplugin-icons/0.13.0_156ab524000ac0f29e01f162b9943b71: - resolution: {integrity: sha512-CyAl0HV3bZUGT7ut9agpPRhEYXCvufr80Fh72yrkD57BVCTZ7ze10Rt63ZrvPXiJQpd+aI/Bizm2aqOf3WPSfg==} + /unplugin-icons/0.13.2_7c21275ff0dea6ae855d07d572d52fcf: + resolution: {integrity: sha512-Dwfn5DkKrp/BpZV0R/2wgU39j+kjkeuIQ54PmJ9LhXNpNAS+Huf6Fl/PUmUrlWOvMAz0uPo3y/5lQKZUBjBkBQ==} peerDependencies: - '@svgr/core': ^5.5.0 + '@svgr/core': '>=5.5.0' '@vue/compiler-sfc': ^3.0.2 vue-template-compiler: ^2.6.12 vue-template-es2015-compiler: ^1.9.0 @@ -3800,22 +3795,23 @@ packages: optional: true dependencies: '@antfu/install-pkg': 0.1.0 - '@antfu/utils': 0.4.0 - '@iconify/utils': 1.0.21 - '@vue/compiler-sfc': 3.2.29 + '@antfu/utils': 0.5.0 + '@iconify/utils': 1.0.23 + '@vue/compiler-sfc': 3.2.31 debug: 4.3.3 kolorist: 1.5.1 local-pkg: 0.4.1 - unplugin: 0.2.21_vite@2.7.13 + unplugin: 0.3.2_vite@2.8.4 transitivePeerDependencies: + - esbuild - rollup - supports-color - vite - webpack dev: false - /unplugin-vue-components/0.17.15_vite@2.7.13+vue@3.2.26: - resolution: {integrity: sha512-KpSlv7BaPRswwlCUy7gdpiqOAaHnMeMTmMOqJPmreYTGupt+6qXH3S3uLEmPmXUcuzRXlL+4eysuVunSAbsn0A==} + /unplugin-vue-components/0.17.20_vite@2.8.4+vue@3.2.31: + resolution: {integrity: sha512-YSofs2RFzLUZWnMyEZ25PnK1WR6etiS2Wl2TdU5T6nvyvn9HqUD54V5JAdKmybgLym6M+YoOE+Mzxtj/bTWDpQ==} engines: {node: '>=14'} peerDependencies: '@babel/parser': ^7.15.8 @@ -3834,10 +3830,10 @@ packages: fast-glob: 3.2.11 local-pkg: 0.4.1 magic-string: 0.25.7 - minimatch: 3.0.4 + minimatch: 3.1.2 resolve: 1.22.0 - unplugin: 0.3.2_vite@2.7.13 - vue: 3.2.26 + unplugin: 0.3.2_vite@2.8.4 + vue: 3.2.31 transitivePeerDependencies: - esbuild - rollup @@ -3846,46 +3842,7 @@ packages: - webpack dev: false - /unplugin/0.2.21_vite@2.7.13: - resolution: {integrity: sha512-IJ15/L5XbhnV7J09Zjk0FT5HEkBjkXucWAXQWRsmEtUxmmxwh23yavrmDbCF6ZPxWiVB28+wnKIHePTRRpQPbQ==} - peerDependencies: - rollup: ^2.50.0 - vite: ^2.3.0 - webpack: 4 || 5 - peerDependenciesMeta: - rollup: - optional: true - vite: - optional: true - webpack: - optional: true - dependencies: - vite: 2.7.13_sass@1.49.1 - webpack-virtual-modules: 0.4.3 - dev: false - - /unplugin/0.3.0_vite@2.7.13: - resolution: {integrity: sha512-9yLlOo+XC4NdIRgpkDSHOAHkQDq2x4mbuVNO/eKVa3C8WTn5wWGfzEFfRJFL8euqnX3Gf7hEur0AhXxy+WSwkg==} - peerDependencies: - esbuild: '>=0.13' - rollup: ^2.50.0 - vite: ^2.3.0 - webpack: 4 || 5 - peerDependenciesMeta: - esbuild: - optional: true - rollup: - optional: true - vite: - optional: true - webpack: - optional: true - dependencies: - vite: 2.7.13_sass@1.49.1 - webpack-virtual-modules: 0.4.3 - dev: false - - /unplugin/0.3.2_vite@2.7.13: + /unplugin/0.3.2_vite@2.8.4: resolution: {integrity: sha512-5d0DMYNKZU+S9eZUiBfw6Co32eRg8myUgBPoWSqG/wDFCUE/WznfSsJnZWi1P9l69x4uLJqt2qVq1xW/AsXFrw==} peerDependencies: esbuild: '>=0.13' @@ -3902,7 +3859,7 @@ packages: webpack: optional: true dependencies: - vite: 2.7.13_sass@1.49.1 + vite: 2.8.4_sass@1.49.8 webpack-virtual-modules: 0.4.3 dev: false @@ -3946,6 +3903,10 @@ packages: hasBin: true dev: true + /v8-compile-cache-lib/3.0.0: + resolution: {integrity: sha512-mpSYqfsFvASnSn5qMiwrr4VKfumbPyONLCOPmsR3A6pTY/r0+tSaVbgPWSAIuzbk3lCTa+FForeTiO+wBQGkjA==} + dev: true + /v8-to-istanbul/8.1.1: resolution: {integrity: sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==} engines: {node: '>=10.12.0'} @@ -3962,8 +3923,8 @@ packages: spdx-expression-parse: 3.0.1 dev: true - /vite/2.7.13_sass@1.49.1: - resolution: {integrity: sha512-Mq8et7f3aK0SgSxjDNfOAimZGW9XryfHRa/uV0jseQSilg+KhYDSoNb9h1rknOy6SuMkvNDLKCYAYYUMCE+IgQ==} + /vite/2.8.4_sass@1.49.8: + resolution: {integrity: sha512-GwtOkkaT2LDI82uWZKcrpRQxP5tymLnC7hVHHqNkhFNknYr0hJUlDLfhVRgngJvAy3RwypkDCWtTKn1BjO96Dw==} engines: {node: '>=12.2.0'} hasBin: true peerDependencies: @@ -3978,16 +3939,16 @@ packages: stylus: optional: true dependencies: - esbuild: 0.13.15 - postcss: 8.4.5 + esbuild: 0.14.23 + postcss: 8.4.6 resolve: 1.22.0 - rollup: 2.66.0 - sass: 1.49.1 + rollup: 2.68.0 + sass: 1.49.8 optionalDependencies: fsevents: 2.3.2 - /vitest/0.2.5_05f2560ef29531b3d2c63d1c9d11d95b: - resolution: {integrity: sha512-QruEhsNxy8ycLxYG9rrGUfHZzJ8A6YvA9ULZ4w/ecvm0Zejm1nxUar/XkRWkL2xzrqA5AjmfqDSQZ8q2bFbA0Q==} + /vitest/0.5.4_cd210661e4654a5e11249b465567e809: + resolution: {integrity: sha512-mQ6Wj5vczFybtb/kZ419gLqQRroLgqRdkVkNyC4Dz6XWDGBhBNEVP/KryLGgovEGvs9nlJBacaFXWt+6Cgdstg==} engines: {node: '>=14.14.0'} hasBin: true peerDependencies: @@ -4011,16 +3972,16 @@ packages: chai: 4.3.6 jsdom: 19.0.0 local-pkg: 0.4.1 - tinypool: 0.1.1 - tinyspy: 0.2.10 - vite: 2.7.13_sass@1.49.1 + tinypool: 0.1.2 + tinyspy: 0.3.0 + vite: 2.8.4_sass@1.49.8 transitivePeerDependencies: - less - sass - stylus dev: true - /vue-demi/0.12.1_vue@3.2.26: + /vue-demi/0.12.1_vue@3.2.31: resolution: {integrity: sha512-QL3ny+wX8c6Xm1/EZylbgzdoDolye+VpCXRhI2hug9dJTP3OUJ3lmiKN3CsVV3mOJKwFi0nsstbgob0vG7aoIw==} engines: {node: '>=12'} hasBin: true @@ -4032,25 +3993,25 @@ packages: '@vue/composition-api': optional: true dependencies: - vue: 3.2.26 + vue: 3.2.31 - /vue-router/4.0.12_vue@3.2.26: + /vue-router/4.0.12_vue@3.2.31: resolution: {integrity: sha512-CPXvfqe+mZLB1kBWssssTiWg4EQERyqJZes7USiqfW9B5N2x+nHlnsM1D3b5CaJ6qgCvMmYJnz+G0iWjNCvXrg==} peerDependencies: vue: ^3.0.0 dependencies: '@vue/devtools-api': 6.0.0-beta.21.1 - vue: 3.2.26 + vue: 3.2.31 dev: false - /vue/3.2.26: - resolution: {integrity: sha512-KD4lULmskL5cCsEkfhERVRIOEDrfEL9CwAsLYpzptOGjaGFNWo3BQ9g8MAb7RaIO71rmVOziZ/uEN/rHwcUIhg==} + /vue/3.2.31: + resolution: {integrity: sha512-odT3W2tcffTiQCy57nOT93INw1auq5lYLLYtWpPYQQYQOOdHiqFct9Xhna6GJ+pJQaF67yZABraH47oywkJgFw==} 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@3.2.26 - '@vue/shared': 3.2.26 + '@vue/compiler-dom': 3.2.31 + '@vue/compiler-sfc': 3.2.31 + '@vue/runtime-dom': 3.2.31 + '@vue/server-renderer': 3.2.31_vue@3.2.31 + '@vue/shared': 3.2.31 dev: false /w3c-hr-time/1.0.2: @@ -4182,7 +4143,7 @@ packages: dependencies: imurmurhash: 0.1.4 is-typedarray: 1.0.0 - signal-exit: 3.0.6 + signal-exit: 3.0.7 typedarray-to-buffer: 3.1.5 dev: true