diff --git a/auto-imports.d.ts b/auto-imports.d.ts index 6ccbece..9f7807a 100644 --- a/auto-imports.d.ts +++ b/auto-imports.d.ts @@ -40,6 +40,8 @@ declare global { const inject: typeof import('vue')['inject'] const isDark: typeof import('./src/composables/dark')['isDark'] const isDefined: typeof import('@vueuse/core')['isDefined'] + const isProxy: typeof import('vue')['isProxy'] + const isReactive: typeof import('vue')['isReactive'] const isReadonly: typeof import('vue')['isReadonly'] const isRef: typeof import('vue')['isRef'] const logicAnd: typeof import('@vueuse/core')['logicAnd'] @@ -135,6 +137,7 @@ declare global { const useDisplayMedia: typeof import('@vueuse/core')['useDisplayMedia'] const useDocumentVisibility: typeof import('@vueuse/core')['useDocumentVisibility'] const useDraggable: typeof import('@vueuse/core')['useDraggable'] + const useDropZone: typeof import('@vueuse/core')['useDropZone'] const useElementBounding: typeof import('@vueuse/core')['useElementBounding'] const useElementByPoint: typeof import('@vueuse/core')['useElementByPoint'] const useElementHover: typeof import('@vueuse/core')['useElementHover'] @@ -238,6 +241,8 @@ declare global { const watchIgnorable: typeof import('@vueuse/core')['watchIgnorable'] const watchOnce: typeof import('@vueuse/core')['watchOnce'] const watchPausable: typeof import('@vueuse/core')['watchPausable'] + const watchPostEffect: typeof import('vue')['watchPostEffect'] + const watchSyncEffect: typeof import('vue')['watchSyncEffect'] const watchThrottled: typeof import('@vueuse/core')['watchThrottled'] const watchWithFilter: typeof import('@vueuse/core')['watchWithFilter'] const whenever: typeof import('@vueuse/core')['whenever'] @@ -284,6 +289,8 @@ declare module 'vue' { inject: typeof import('vue')['inject'] isDark: typeof import('./src/composables/dark')['isDark'] isDefined: typeof import('@vueuse/core')['isDefined'] + isProxy: typeof import('vue')['isProxy'] + isReactive: typeof import('vue')['isReactive'] isReadonly: typeof import('vue')['isReadonly'] isRef: typeof import('vue')['isRef'] logicAnd: typeof import('@vueuse/core')['logicAnd'] @@ -379,6 +386,7 @@ declare module 'vue' { useDisplayMedia: typeof import('@vueuse/core')['useDisplayMedia'] useDocumentVisibility: typeof import('@vueuse/core')['useDocumentVisibility'] useDraggable: typeof import('@vueuse/core')['useDraggable'] + useDropZone: typeof import('@vueuse/core')['useDropZone'] useElementBounding: typeof import('@vueuse/core')['useElementBounding'] useElementByPoint: typeof import('@vueuse/core')['useElementByPoint'] useElementHover: typeof import('@vueuse/core')['useElementHover'] @@ -482,6 +490,8 @@ declare module 'vue' { watchIgnorable: typeof import('@vueuse/core')['watchIgnorable'] watchOnce: typeof import('@vueuse/core')['watchOnce'] watchPausable: typeof import('@vueuse/core')['watchPausable'] + watchPostEffect: typeof import('vue')['watchPostEffect'] + watchSyncEffect: typeof import('vue')['watchSyncEffect'] watchThrottled: typeof import('@vueuse/core')['watchThrottled'] watchWithFilter: typeof import('@vueuse/core')['watchWithFilter'] whenever: typeof import('@vueuse/core')['whenever'] diff --git a/package.json b/package.json index c3cedeb..70e61ad 100644 --- a/package.json +++ b/package.json @@ -11,27 +11,27 @@ }, "dependencies": { "@vueuse/core": "^8.6.0", - "vue": "^3.2.36", - "vue-router": "^4.0.15" + "vue": "^3.2.37", + "vue-router": "^4.0.16" }, "devDependencies": { "@antfu/eslint-config": "^0.25.1", "@iconify-json/carbon": "^1.1.5", - "@types/node": "^17.0.39", - "@unocss/reset": "^0.37.2", + "@types/node": "^17.0.42", + "@unocss/reset": "^0.39.0", "@vitejs/plugin-vue": "^2.3.3", "@vue/test-utils": "^2.0.0", - "eslint": "^8.16.0", + "eslint": "^8.17.0", "jsdom": "^19.0.0", - "pnpm": "^7.1.7", - "typescript": "^4.7.2", - "unocss": "^0.37.2", - "unplugin-auto-import": "^0.8.7", + "pnpm": "^7.2.1", + "typescript": "^4.7.3", + "unocss": "^0.39.0", + "unplugin-auto-import": "^0.8.8", "unplugin-vue-components": "^0.19.6", - "vite": "^2.9.9", - "vite-plugin-pages": "^0.23.0", - "vitest": "^0.13.1", - "vue-tsc": "^0.36.0" + "vite": "^2.9.12", + "vite-plugin-pages": "^0.24.0", + "vitest": "^0.14.2", + "vue-tsc": "^0.37.7" }, "eslintConfig": { "extends": "@antfu" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 30ddc0f..990d18c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -3,67 +3,67 @@ lockfileVersion: 5.4 specifiers: '@antfu/eslint-config': ^0.25.1 '@iconify-json/carbon': ^1.1.5 - '@types/node': ^17.0.39 - '@unocss/reset': ^0.37.2 + '@types/node': ^17.0.42 + '@unocss/reset': ^0.39.0 '@vitejs/plugin-vue': ^2.3.3 '@vue/test-utils': ^2.0.0 '@vueuse/core': ^8.6.0 - eslint: ^8.16.0 + eslint: ^8.17.0 jsdom: ^19.0.0 - pnpm: ^7.1.7 - typescript: ^4.7.2 - unocss: ^0.37.2 - unplugin-auto-import: ^0.8.7 + pnpm: ^7.2.1 + typescript: ^4.7.3 + unocss: ^0.39.0 + unplugin-auto-import: ^0.8.8 unplugin-vue-components: ^0.19.6 - vite: ^2.9.9 - vite-plugin-pages: ^0.23.0 - vitest: ^0.13.1 - vue: ^3.2.36 - vue-router: ^4.0.15 - vue-tsc: ^0.36.0 + vite: ^2.9.12 + vite-plugin-pages: ^0.24.0 + vitest: ^0.14.2 + vue: ^3.2.37 + vue-router: ^4.0.16 + vue-tsc: ^0.37.7 dependencies: - '@vueuse/core': 8.6.0_vue@3.2.36 - vue: 3.2.36 - vue-router: 4.0.15_vue@3.2.36 + '@vueuse/core': 8.6.0_vue@3.2.37 + vue: 3.2.37 + vue-router: 4.0.16_vue@3.2.37 devDependencies: - '@antfu/eslint-config': 0.25.1_xztl6dhthcahlo6akmb2bmjmle + '@antfu/eslint-config': 0.25.1_ud6rd4xtew5bv4yhvkvu24pzm4 '@iconify-json/carbon': 1.1.5 - '@types/node': 17.0.39 - '@unocss/reset': 0.37.2 - '@vitejs/plugin-vue': 2.3.3_vite@2.9.9+vue@3.2.36 - '@vue/test-utils': 2.0.0_vue@3.2.36 - eslint: 8.16.0 + '@types/node': 17.0.42 + '@unocss/reset': 0.39.0 + '@vitejs/plugin-vue': 2.3.3_vite@2.9.12+vue@3.2.37 + '@vue/test-utils': 2.0.0_vue@3.2.37 + eslint: 8.17.0 jsdom: 19.0.0 - pnpm: 7.1.7 - typescript: 4.7.2 - unocss: 0.37.2_vite@2.9.9 - unplugin-auto-import: 0.8.7_2f4luahfrvm5qufmejfjusqqgu - unplugin-vue-components: 0.19.6_vite@2.9.9+vue@3.2.36 - vite: 2.9.9 - vite-plugin-pages: 0.23.0_vite@2.9.9 - vitest: 0.13.1_jsdom@19.0.0 - vue-tsc: 0.36.0_typescript@4.7.2 + pnpm: 7.2.1 + typescript: 4.7.3 + unocss: 0.39.0_vite@2.9.12 + unplugin-auto-import: 0.8.8_xnp3iobkgue47hz2kuxdzi7u6a + unplugin-vue-components: 0.19.6_vite@2.9.12+vue@3.2.37 + vite: 2.9.12 + vite-plugin-pages: 0.24.0_vite@2.9.12 + vitest: 0.14.2_jsdom@19.0.0 + vue-tsc: 0.37.7_typescript@4.7.3 packages: - /@antfu/eslint-config-basic/0.25.1_hzuh7e2up357pvq3mkokjvu2lq: + /@antfu/eslint-config-basic/0.25.1_c75vrstjak6ulzoy6wy5a4ug4i: resolution: {integrity: sha512-FiOC33yoqHJCElFjSPJ9rHIjGSvJSqbYE58PgRXtJE9E4MM00vwzbA9iKILLnj27o3r3V+1sngHWlIeGaQu/iA==} peerDependencies: eslint: '>=7.4.0' dependencies: - eslint: 8.16.0 - eslint-plugin-antfu: 0.25.1_xztl6dhthcahlo6akmb2bmjmle - eslint-plugin-eslint-comments: 3.2.0_eslint@8.16.0 + eslint: 8.17.0 + eslint-plugin-antfu: 0.25.1_ud6rd4xtew5bv4yhvkvu24pzm4 + eslint-plugin-eslint-comments: 3.2.0_eslint@8.17.0 eslint-plugin-html: 6.2.0 - eslint-plugin-import: 2.26.0_grfei5yostfimvqdpf73rlhy3e - eslint-plugin-jsonc: 2.2.1_eslint@8.16.0 - eslint-plugin-markdown: 2.2.1_eslint@8.16.0 - eslint-plugin-n: 15.2.0_eslint@8.16.0 - eslint-plugin-promise: 6.0.0_eslint@8.16.0 - eslint-plugin-unicorn: 42.0.0_eslint@8.16.0 - eslint-plugin-yml: 1.0.0_eslint@8.16.0 + eslint-plugin-import: 2.26.0_n4dyx7lg25q5n6bft3gdtbivxa + eslint-plugin-jsonc: 2.2.1_eslint@8.17.0 + eslint-plugin-markdown: 2.2.1_eslint@8.17.0 + eslint-plugin-n: 15.2.0_eslint@8.17.0 + eslint-plugin-promise: 6.0.0_eslint@8.17.0 + eslint-plugin-unicorn: 42.0.0_eslint@8.17.0 + eslint-plugin-yml: 1.0.0_eslint@8.17.0 jsonc-eslint-parser: 2.1.0 yaml-eslint-parser: 1.0.1 transitivePeerDependencies: @@ -74,14 +74,14 @@ packages: - typescript dev: true - /@antfu/eslint-config-react/0.25.1_xztl6dhthcahlo6akmb2bmjmle: + /@antfu/eslint-config-react/0.25.1_ud6rd4xtew5bv4yhvkvu24pzm4: resolution: {integrity: sha512-gLdRj4nmOk4W9ORzvkwf8kklCkSxY7ox7BKE97HYcGtaq5oAQjibYC+WPkLklj2+BQuOXcZdGbqJgx/+qHfRrw==} peerDependencies: eslint: '>=7.4.0' dependencies: - '@antfu/eslint-config-ts': 0.25.1_xztl6dhthcahlo6akmb2bmjmle - eslint: 8.16.0 - eslint-plugin-react: 7.30.0_eslint@8.16.0 + '@antfu/eslint-config-ts': 0.25.1_ud6rd4xtew5bv4yhvkvu24pzm4 + eslint: 8.17.0 + eslint-plugin-react: 7.30.0_eslint@8.17.0 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -89,31 +89,31 @@ packages: - typescript dev: true - /@antfu/eslint-config-ts/0.25.1_xztl6dhthcahlo6akmb2bmjmle: + /@antfu/eslint-config-ts/0.25.1_ud6rd4xtew5bv4yhvkvu24pzm4: resolution: {integrity: sha512-bKaSOah8Qb5ND0i14x3kcpfMA5euxy/9VYVwZQ2XJgY6hkjEY1wTyC0Jw6JQvTYglEycEc2SDrtEZ0+0SKA/jg==} peerDependencies: eslint: '>=7.4.0' typescript: '>=3.9' dependencies: - '@antfu/eslint-config-basic': 0.25.1_hzuh7e2up357pvq3mkokjvu2lq - '@typescript-eslint/eslint-plugin': 5.26.0_hzuh7e2up357pvq3mkokjvu2lq - '@typescript-eslint/parser': 5.26.0_xztl6dhthcahlo6akmb2bmjmle - eslint: 8.16.0 - typescript: 4.7.2 + '@antfu/eslint-config-basic': 0.25.1_c75vrstjak6ulzoy6wy5a4ug4i + '@typescript-eslint/eslint-plugin': 5.26.0_c75vrstjak6ulzoy6wy5a4ug4i + '@typescript-eslint/parser': 5.26.0_ud6rd4xtew5bv4yhvkvu24pzm4 + eslint: 8.17.0 + typescript: 4.7.3 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color dev: true - /@antfu/eslint-config-vue/0.25.1_xztl6dhthcahlo6akmb2bmjmle: + /@antfu/eslint-config-vue/0.25.1_ud6rd4xtew5bv4yhvkvu24pzm4: resolution: {integrity: sha512-Z9MCGYKZO50eU8YwgqBYWx+GVSOfDHxbIf6+BLxpDmrVGUuJQMqT5CIcihSRkQMeH/drQwPmQKbSSmVdjOLHrg==} peerDependencies: eslint: '>=7.4.0' dependencies: - '@antfu/eslint-config-ts': 0.25.1_xztl6dhthcahlo6akmb2bmjmle - eslint: 8.16.0 - eslint-plugin-vue: 9.0.1_eslint@8.16.0 + '@antfu/eslint-config-ts': 0.25.1_ud6rd4xtew5bv4yhvkvu24pzm4 + eslint: 8.17.0 + eslint-plugin-vue: 9.0.1_eslint@8.17.0 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -121,25 +121,25 @@ packages: - typescript dev: true - /@antfu/eslint-config/0.25.1_xztl6dhthcahlo6akmb2bmjmle: + /@antfu/eslint-config/0.25.1_ud6rd4xtew5bv4yhvkvu24pzm4: resolution: {integrity: sha512-CRg2LL6bh+lWWfG5TDJh3TUQTh+immu6IWkiVaJJn4jVD7jFQSewvIQUoPo7/YEPFpL2TTCCUjmT2YpmSbnedg==} peerDependencies: eslint: '>=7.4.0' dependencies: - '@antfu/eslint-config-react': 0.25.1_xztl6dhthcahlo6akmb2bmjmle - '@antfu/eslint-config-vue': 0.25.1_xztl6dhthcahlo6akmb2bmjmle - '@typescript-eslint/eslint-plugin': 5.26.0_hzuh7e2up357pvq3mkokjvu2lq - '@typescript-eslint/parser': 5.26.0_xztl6dhthcahlo6akmb2bmjmle - eslint: 8.16.0 - eslint-plugin-eslint-comments: 3.2.0_eslint@8.16.0 + '@antfu/eslint-config-react': 0.25.1_ud6rd4xtew5bv4yhvkvu24pzm4 + '@antfu/eslint-config-vue': 0.25.1_ud6rd4xtew5bv4yhvkvu24pzm4 + '@typescript-eslint/eslint-plugin': 5.26.0_c75vrstjak6ulzoy6wy5a4ug4i + '@typescript-eslint/parser': 5.26.0_ud6rd4xtew5bv4yhvkvu24pzm4 + eslint: 8.17.0 + eslint-plugin-eslint-comments: 3.2.0_eslint@8.17.0 eslint-plugin-html: 6.2.0 - eslint-plugin-import: 2.26.0_grfei5yostfimvqdpf73rlhy3e - eslint-plugin-jsonc: 2.2.1_eslint@8.16.0 - eslint-plugin-n: 15.2.0_eslint@8.16.0 - eslint-plugin-promise: 6.0.0_eslint@8.16.0 - eslint-plugin-unicorn: 42.0.0_eslint@8.16.0 - eslint-plugin-vue: 9.0.1_eslint@8.16.0 - eslint-plugin-yml: 1.0.0_eslint@8.16.0 + eslint-plugin-import: 2.26.0_n4dyx7lg25q5n6bft3gdtbivxa + eslint-plugin-jsonc: 2.2.1_eslint@8.17.0 + eslint-plugin-n: 15.2.0_eslint@8.17.0 + eslint-plugin-promise: 6.0.0_eslint@8.17.0 + eslint-plugin-unicorn: 42.0.0_eslint@8.17.0 + eslint-plugin-vue: 9.0.1_eslint@8.17.0 + eslint-plugin-yml: 1.0.0_eslint@8.17.0 jsonc-eslint-parser: 2.1.0 yaml-eslint-parser: 1.0.1 transitivePeerDependencies: @@ -321,8 +321,8 @@ packages: resolution: {integrity: sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==} dev: true - /@types/node/17.0.39: - resolution: {integrity: sha512-JDU3YLlnPK3WDao6/DlXLOgSNpG13ct+CwIO17V8q0/9fWJyeMJJ/VyZ1lv8kDprihvZMydzVwf0tQOqGiY2Nw==} + /@types/node/17.0.42: + resolution: {integrity: sha512-Q5BPGyGKcvQgAMbsr7qEGN/kIPN6zZecYYABeTDBizOsau+2NMdSVTar9UQw21A2+JyA2KRNDYaYrPB0Rpk2oQ==} dev: true /@types/normalize-package-data/2.4.1: @@ -333,7 +333,7 @@ packages: resolution: {integrity: sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==} dev: true - /@typescript-eslint/eslint-plugin/5.26.0_hzuh7e2up357pvq3mkokjvu2lq: + /@typescript-eslint/eslint-plugin/5.26.0_c75vrstjak6ulzoy6wy5a4ug4i: resolution: {integrity: sha512-oGCmo0PqnRZZndr+KwvvAUvD3kNE4AfyoGCwOZpoCncSh4MVD06JTE8XQa2u9u+NX5CsyZMBTEc2C72zx38eYA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -344,23 +344,23 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.26.0_xztl6dhthcahlo6akmb2bmjmle + '@typescript-eslint/parser': 5.26.0_ud6rd4xtew5bv4yhvkvu24pzm4 '@typescript-eslint/scope-manager': 5.26.0 - '@typescript-eslint/type-utils': 5.26.0_xztl6dhthcahlo6akmb2bmjmle - '@typescript-eslint/utils': 5.26.0_xztl6dhthcahlo6akmb2bmjmle + '@typescript-eslint/type-utils': 5.26.0_ud6rd4xtew5bv4yhvkvu24pzm4 + '@typescript-eslint/utils': 5.26.0_ud6rd4xtew5bv4yhvkvu24pzm4 debug: 4.3.4 - eslint: 8.16.0 + eslint: 8.17.0 functional-red-black-tree: 1.0.1 ignore: 5.2.0 regexpp: 3.2.0 semver: 7.3.7 - tsutils: 3.21.0_typescript@4.7.2 - typescript: 4.7.2 + tsutils: 3.21.0_typescript@4.7.3 + typescript: 4.7.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser/5.26.0_xztl6dhthcahlo6akmb2bmjmle: + /@typescript-eslint/parser/5.26.0_ud6rd4xtew5bv4yhvkvu24pzm4: resolution: {integrity: sha512-n/IzU87ttzIdnAH5vQ4BBDnLPly7rC5VnjN3m0xBG82HK6rhRxnCb3w/GyWbNDghPd+NktJqB/wl6+YkzZ5T5Q==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -372,10 +372,10 @@ packages: dependencies: '@typescript-eslint/scope-manager': 5.26.0 '@typescript-eslint/types': 5.26.0 - '@typescript-eslint/typescript-estree': 5.26.0_typescript@4.7.2 + '@typescript-eslint/typescript-estree': 5.26.0_typescript@4.7.3 debug: 4.3.4 - eslint: 8.16.0 - typescript: 4.7.2 + eslint: 8.17.0 + typescript: 4.7.3 transitivePeerDependencies: - supports-color dev: true @@ -388,7 +388,7 @@ packages: '@typescript-eslint/visitor-keys': 5.26.0 dev: true - /@typescript-eslint/type-utils/5.26.0_xztl6dhthcahlo6akmb2bmjmle: + /@typescript-eslint/type-utils/5.26.0_ud6rd4xtew5bv4yhvkvu24pzm4: resolution: {integrity: sha512-7ccbUVWGLmcRDSA1+ADkDBl5fP87EJt0fnijsMFTVHXKGduYMgienC/i3QwoVhDADUAPoytgjbZbCOMj4TY55A==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -398,11 +398,11 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/utils': 5.26.0_xztl6dhthcahlo6akmb2bmjmle + '@typescript-eslint/utils': 5.26.0_ud6rd4xtew5bv4yhvkvu24pzm4 debug: 4.3.4 - eslint: 8.16.0 - tsutils: 3.21.0_typescript@4.7.2 - typescript: 4.7.2 + eslint: 8.17.0 + tsutils: 3.21.0_typescript@4.7.3 + typescript: 4.7.3 transitivePeerDependencies: - supports-color dev: true @@ -412,7 +412,7 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/typescript-estree/5.26.0_typescript@4.7.2: + /@typescript-eslint/typescript-estree/5.26.0_typescript@4.7.3: resolution: {integrity: sha512-EyGpw6eQDsfD6jIqmXP3rU5oHScZ51tL/cZgFbFBvWuCwrIptl+oueUZzSmLtxFuSOQ9vDcJIs+279gnJkfd1w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -427,13 +427,13 @@ packages: globby: 11.1.0 is-glob: 4.0.3 semver: 7.3.7 - tsutils: 3.21.0_typescript@4.7.2 - typescript: 4.7.2 + tsutils: 3.21.0_typescript@4.7.3 + typescript: 4.7.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/utils/5.26.0_xztl6dhthcahlo6akmb2bmjmle: + /@typescript-eslint/utils/5.26.0_ud6rd4xtew5bv4yhvkvu24pzm4: resolution: {integrity: sha512-PJFwcTq2Pt4AMOKfe3zQOdez6InIDOjUJJD3v3LyEtxHGVVRK3Vo7Dd923t/4M9hSH2q2CLvcTdxlLPjcIk3eg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -442,10 +442,10 @@ packages: '@types/json-schema': 7.0.9 '@typescript-eslint/scope-manager': 5.26.0 '@typescript-eslint/types': 5.26.0 - '@typescript-eslint/typescript-estree': 5.26.0_typescript@4.7.2 - eslint: 8.16.0 + '@typescript-eslint/typescript-estree': 5.26.0_typescript@4.7.3 + eslint: 8.17.0 eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.16.0 + eslint-utils: 3.0.0_eslint@8.17.0 transitivePeerDependencies: - supports-color - typescript @@ -459,14 +459,14 @@ packages: eslint-visitor-keys: 3.3.0 dev: true - /@unocss/cli/0.37.2: - resolution: {integrity: sha512-IbWZGa8T4LTzOIER3JG/AuGiWfxG6whMNCbFnNsaN0Nwyr4wWqHWspxf7DfL1gC6C8x3QAlrQvHi8cHAFUwGVg==} + /@unocss/cli/0.39.0: + resolution: {integrity: sha512-gMk6M3iLEHzoP7EEiHsR/O7I82VMpsaZlJxeUAp3owaz8znBUJyies441FIp2ahbn043ptMyOVzhI76MX/bSFA==} engines: {node: '>=14'} hasBin: true dependencies: - '@unocss/config': 0.37.2 - '@unocss/core': 0.37.2 - '@unocss/preset-uno': 0.37.2 + '@unocss/config': 0.39.0 + '@unocss/core': 0.39.0 + '@unocss/preset-uno': 0.39.0 cac: 6.7.12 chokidar: 3.5.3 colorette: 2.0.16 @@ -476,250 +476,250 @@ packages: perfect-debounce: 0.1.3 dev: true - /@unocss/config/0.37.2: - resolution: {integrity: sha512-OJdv+GortQD57aEZj9O/nlGLNKU2PFWzSALznH77wVyrpG2ThH8aWKkL6+KsOgiImNeDkdIno1ZXeFSQi0x7lQ==} + /@unocss/config/0.39.0: + resolution: {integrity: sha512-anRVtucLuCXLqjHw/vpe1GN2y2ncFC7Ll+GeLeqM/RY63B8g1WuAI/x76D6m9VFbDMUZGaR54MVnzE4BOzOx/Q==} engines: {node: '>=14'} dependencies: - '@unocss/core': 0.37.2 + '@unocss/core': 0.39.0 unconfig: 0.3.4 dev: true - /@unocss/core/0.37.2: - resolution: {integrity: sha512-qH/1SmD9Jkv7cDZVj3L9+JAQkW/myTRoZ3yU18uBc4+2WveFaFKeAIlC5FQRyoT4SWXBkQlhsavGlq6bhMdnzQ==} + /@unocss/core/0.39.0: + resolution: {integrity: sha512-S6ujOluyh/VTIMYTlD2cyfiIlZ9cd/idvBXEky+7nFYHsiQHA0WCTOvCECuLt5Rv8V+njVRF3XLBSStZ+6M+pQ==} dev: true - /@unocss/inspector/0.37.2: - resolution: {integrity: sha512-rRMZaJygGkxf9j/khqlEU7N+iyPWzKBDr4dQxEZiaHVCOn5cuCEG6uSqRRIRJRkj2iE6nejiRada9/mcq/24qA==} + /@unocss/inspector/0.39.0: + resolution: {integrity: sha512-vjysyEbP7+Xg7ABJPkSEbkiiPbXBuWCk0hj7U6Oosf/m/c5ExgPeyjQlyvIwSluTtmPIdp5/shlSD94dSm+1Tg==} dependencies: gzip-size: 6.0.0 sirv: 2.0.2 dev: true - /@unocss/preset-attributify/0.37.2: - resolution: {integrity: sha512-10NSb789hMr6uurfykExkZfOPeeBMQ7ECLqMoVhainov1iGTL/NRTaEhzhwDt8sxH3UEcv0Lg7UaiZXvuMlTEw==} + /@unocss/preset-attributify/0.39.0: + resolution: {integrity: sha512-Iw9wxN6KEC9UySXh3aRsKAi8df4bz+Owv6r9AdAvimr9JaLZQRl6JUIWhVAMIRfdn/aKztdu8B6gmg7pNZsGFA==} dependencies: - '@unocss/core': 0.37.2 + '@unocss/core': 0.39.0 dev: true - /@unocss/preset-icons/0.37.2: - resolution: {integrity: sha512-lm1NlARBY4aceftLDh7YwiymluZJJbG+vOoZJU+yiGpHZlmaoxig8ww+pgmPv4yGhfYNLXwE5+8V86dQYg+BtQ==} + /@unocss/preset-icons/0.39.0: + resolution: {integrity: sha512-00hJSHpA56pWjm1VMDqEGAbBeXMHDygynkAN/XbRPZuSyfuXzjMWJzNf/OTrj+hd+CDqQM20ntJuQyNDV0Rguw==} dependencies: '@iconify/utils': 1.0.32 - '@unocss/core': 0.37.2 + '@unocss/core': 0.39.0 ohmyfetch: 0.4.18 transitivePeerDependencies: - supports-color dev: true - /@unocss/preset-mini/0.37.2: - resolution: {integrity: sha512-fAj+xM28bQMUEW4NlF8OMOq3wJzPocOlROx1+qufxcQedxiIUrcO9QT/3/nZYTTFtGTdRL390JvL9Ue3ux8hIA==} + /@unocss/preset-mini/0.39.0: + resolution: {integrity: sha512-EPZ/YP3l605BU0DP4/NRHD+VMjuHvVPjVovgq9TNSIo6Y1s/qDfCHkxfuAIzCuqDneEx3QxR9RpmevD1Jm+plQ==} dependencies: - '@unocss/core': 0.37.2 + '@unocss/core': 0.39.0 dev: true - /@unocss/preset-tagify/0.37.2: - resolution: {integrity: sha512-tNvRauWqOzzgxx2Qw3xvpnv9TaiIBiSdy2TyOayAtjnimFsb2UbaZ/MIoSw+SbeYjMpihV+x9eCRptG8H8icWg==} + /@unocss/preset-tagify/0.39.0: + resolution: {integrity: sha512-n0O5zKdEGqEq8Q2gejAc1bjyRm/bpOocdWmB9R+rUlG2pmY4/0M1rEv1niKgTd8TVWz1rGxo/WbF3acyKmsXTw==} dependencies: - '@unocss/core': 0.37.2 + '@unocss/core': 0.39.0 dev: true - /@unocss/preset-typography/0.37.2: - resolution: {integrity: sha512-i926pqmeUgMkmKy70PdeOCWs7ThrV499YWN1IxNs4yqT3JQoq7aPA0vNagHAhtpWs5RWn9QQGL5QNMFurO0JQA==} + /@unocss/preset-typography/0.39.0: + resolution: {integrity: sha512-k6JewRxE0taRDebQWSg0fSLvpexmpqbXYM2DBaJYtLomktQdz64+eMVmP46dD4HRaflsM4ovmtOEl3PlGKaXrQ==} dependencies: - '@unocss/core': 0.37.2 + '@unocss/core': 0.39.0 dev: true - /@unocss/preset-uno/0.37.2: - resolution: {integrity: sha512-l3dHqrjRD0L66fQxcXk1hR10NG0JeGKxs5g+2Xn8fe90srXAxoWymt5ZGQVwwTXMl+kKOofp/GjL2/NbvJ+RMA==} + /@unocss/preset-uno/0.39.0: + resolution: {integrity: sha512-2Qzb1R6DIT1izO0AKxIdLskgpv/XeLQWLkHLb8OKR8cD9ZgWInnWM5Z82vrnKtBXLcaV3POyu6Kx/wR3oquyew==} dependencies: - '@unocss/core': 0.37.2 - '@unocss/preset-mini': 0.37.2 - '@unocss/preset-wind': 0.37.2 + '@unocss/core': 0.39.0 + '@unocss/preset-mini': 0.39.0 + '@unocss/preset-wind': 0.39.0 dev: true - /@unocss/preset-web-fonts/0.37.2: - resolution: {integrity: sha512-2PRccZVu9zV7lhVrcVALlOQUiFfeZJNFqF1NfHPs6jI4W1UeCamKKYIdFtaD7oOzVOxW2skMWpNv4S7LdeCMvg==} + /@unocss/preset-web-fonts/0.39.0: + resolution: {integrity: sha512-7wB02rj4QNywqwI064BhVMfQxfU0Y5UWnUQQA5SIxWU6lA7waAdqnVzaJHw1jwdsbgBbn0l0bGIWhDwfJscfIg==} dependencies: - '@unocss/core': 0.37.2 + '@unocss/core': 0.39.0 ohmyfetch: 0.4.18 dev: true - /@unocss/preset-wind/0.37.2: - resolution: {integrity: sha512-SfugaYkgAqB9S3/wP2hRSYdXXG1vNklZ8XSzx7fhE8fLE6unTs7IqvPNlBqNYBz1kydacxk7QKBJuLDRQm9pfQ==} + /@unocss/preset-wind/0.39.0: + resolution: {integrity: sha512-DXykxha0yHw/DXR8at4Q/FhkqaydR6Q+2yiS1DtSOfc6DBUFWjK0wQDH3CsapYury94qhfixTjUlfGDtpzn9CQ==} dependencies: - '@unocss/core': 0.37.2 - '@unocss/preset-mini': 0.37.2 + '@unocss/core': 0.39.0 + '@unocss/preset-mini': 0.39.0 dev: true - /@unocss/reset/0.37.2: - resolution: {integrity: sha512-if143ODCgOTL884lYwFmyJD38kon8BmbuzDPoEiGx6gXnuaRMQmOQZy9K8XIkpiHgfhzozvUTFOgjMM6lUo4nw==} + /@unocss/reset/0.39.0: + resolution: {integrity: sha512-LSIG3MrhKWE4bWtlZSIFkxEbHf/pX6+kKmKC0t+K31qktnXNa0fCEqF9ETABboDUmt2n8QI2RVZoGm+nCmLP1A==} dev: true - /@unocss/scope/0.37.2: - resolution: {integrity: sha512-KW5XxqwJ8cZdNktldPehM9lAgHlzitl0PimW88Wq3B1CICH52eG8ocqpWPkKStyyK8oDiaq/HjAwdNwjJoBzow==} + /@unocss/scope/0.39.0: + resolution: {integrity: sha512-07f9DM45LeKyNFxyOplkYDy6cxfUvdTcdRkMxPCuWR9VFVvXX0V7Ea6LylLyZdefNYPfjpuBhk+nvWoxA2Fyiw==} dev: true - /@unocss/transformer-compile-class/0.37.2: - resolution: {integrity: sha512-pTVMHr4E3eHN+dG0I186oZFn13uZmJza3h7gLnmC3CoWIr3yqnCO63xKS5VejyP686jvcS56ph4POWup8LvjVA==} + /@unocss/transformer-compile-class/0.39.0: + resolution: {integrity: sha512-e8C8NUn0u7inVYEyu3gORzPL5cDZZk5/cmLP0wu35smtAv5JFUYGXEWwr3+e+GGvf88vuRYYLn2VyQXVzY2Ltg==} dependencies: - '@unocss/core': 0.37.2 + '@unocss/core': 0.39.0 dev: true - /@unocss/transformer-directives/0.37.2: - resolution: {integrity: sha512-rtA5pMNTDFq4BCO1oOQIPt2JcbySfl9IehDYtRfd2l9TySGWDTxlkn/Xp9f96dTaTu0FjjQVcnMOK/kaytnagg==} + /@unocss/transformer-directives/0.39.0: + resolution: {integrity: sha512-m206WURKdyTslaiPGfFET51Yd5ZQdKi5sEYPn1zDrQmYac89HtJsj/cWc8beoSphi3+qdfWWXPqSHG9QZ3ibng==} dependencies: - '@unocss/core': 0.37.2 + '@unocss/core': 0.39.0 css-tree: 2.1.0 dev: true - /@unocss/transformer-variant-group/0.37.2: - resolution: {integrity: sha512-ZStyh+WuEJYf2fWVeo45MSvzY/XyZMW4QaDo3/D+8oLd2daXbjfjXBAhMjRSIT6VJxOCnQ1+nMrtsM1swznEkQ==} + /@unocss/transformer-variant-group/0.39.0: + resolution: {integrity: sha512-5uj3eBZ+L+xoZ4fJG0KZXkpcM9jL7D+QmgA8FwNtCPOsiDXA4Jf/j9ySyyIeQefrzAf7nJwNXO7ReHIk1s/1Xw==} dependencies: - '@unocss/core': 0.37.2 + '@unocss/core': 0.39.0 dev: true - /@unocss/vite/0.37.2_vite@2.9.9: - resolution: {integrity: sha512-GeTSGRETn0aY855b2P3r+9mJ1O+piJjVuQ0+Hp1A2YyR8w0/bJjOBxpYbTeZ27ZNPlijzRU5Yw+hMKAZak2nYQ==} + /@unocss/vite/0.39.0_vite@2.9.12: + resolution: {integrity: sha512-/LZnIblQ3PMVhhJUzyqpVFpybCWv3dtMOaQngvZLbkd7NjV20iuX2kpHKFIvq+tWa+Xs32N9HQvkniv19LKdIg==} peerDependencies: vite: ^2.9.0 dependencies: '@rollup/pluginutils': 4.2.1 - '@unocss/config': 0.37.2 - '@unocss/core': 0.37.2 - '@unocss/inspector': 0.37.2 - '@unocss/scope': 0.37.2 - '@unocss/transformer-directives': 0.37.2 + '@unocss/config': 0.39.0 + '@unocss/core': 0.39.0 + '@unocss/inspector': 0.39.0 + '@unocss/scope': 0.39.0 + '@unocss/transformer-directives': 0.39.0 magic-string: 0.26.2 - vite: 2.9.9 + vite: 2.9.12 dev: true - /@vitejs/plugin-vue/2.3.3_vite@2.9.9+vue@3.2.36: + /@vitejs/plugin-vue/2.3.3_vite@2.9.12+vue@3.2.37: resolution: {integrity: sha512-SmQLDyhz+6lGJhPELsBdzXGc+AcaT8stgkbiTFGpXPe8Tl1tJaBw1A6pxDqDuRsVkD8uscrkx3hA7QDOoKYtyw==} engines: {node: '>=12.0.0'} peerDependencies: vite: ^2.5.10 vue: ^3.2.25 dependencies: - vite: 2.9.9 - vue: 3.2.36 + vite: 2.9.12 + vue: 3.2.37 dev: true - /@volar/code-gen/0.36.0: - resolution: {integrity: sha512-g8UJ0JydaxnUItgybPyjw6aCocQ50ntYw82dvAG/TBhJpJ90ACBn5RPQeQf4UziA0j89Nisox2d70QrRB/RSbA==} + /@volar/code-gen/0.37.7: + resolution: {integrity: sha512-mFUUNgvqK7PdUpMj7euLluX2/5kkY45fL0tERm5XdikB0/bp9GuNG/RUGl0GxB1ocdIsUKw3oprOmJGTL/trYg==} dependencies: - '@volar/source-map': 0.36.0 + '@volar/source-map': 0.37.7 dev: true - /@volar/source-map/0.36.0: - resolution: {integrity: sha512-84Hq9Z4psQ489ae+ODSvwY+rnrw45lzYjGiHLOt18cRShKEjGVhr3vv+SzcCtsTIZld9Lyd2esY8OV8lDQDwTg==} + /@volar/source-map/0.37.7: + resolution: {integrity: sha512-am/EroeyiQWRisyEMWmbKYUCffiL6Fxxe+U2sxEat9PGZw767rEGJ7EKj5m1iNMpinGYsYTV7ymTihn/X1OoDg==} dev: true - /@volar/vue-code-gen/0.36.0: - resolution: {integrity: sha512-PYFrZRoMcPzWxcLjd8nov+MuOSalG8m+xs8xcSsmvL5+WNB4W6ZxP8vLOg9pYhl/NMEm0DYmpGd8MYHIp02p6Q==} + /@volar/vue-code-gen/0.37.7: + resolution: {integrity: sha512-VM5UE1WUR05sEheVQoG/Yeryg9u8jmteOLeNWAlRrZHgqU1t97NOFBxo2Ul9hgeBBW80E2JE02+cZ/srqYDbgQ==} dependencies: - '@volar/code-gen': 0.36.0 - '@volar/source-map': 0.36.0 - '@vue/compiler-core': 3.2.36 - '@vue/compiler-dom': 3.2.36 - '@vue/shared': 3.2.36 + '@volar/code-gen': 0.37.7 + '@volar/source-map': 0.37.7 + '@vue/compiler-core': 3.2.37 + '@vue/compiler-dom': 3.2.37 + '@vue/shared': 3.2.37 dev: true - /@volar/vue-typescript/0.36.0: - resolution: {integrity: sha512-U2I+da9OThyVrBU1WD2LGhCy7Wjwi0sV1+tgN5J58lPnRS3IEm3xbPorHPhO4/zgrLLy+lbJ8taS++szjzbvpA==} + /@volar/vue-typescript/0.37.7: + resolution: {integrity: sha512-V2mdX9GiFK7xxEaiIkJCzrrdfZkF8ptIw3L/LDqOUtUATEB9Da7zJHPugLMa3+wTL8JzFonRRXs02VNfP6SJIg==} dependencies: - '@volar/code-gen': 0.36.0 - '@volar/source-map': 0.36.0 - '@volar/vue-code-gen': 0.36.0 - '@vue/compiler-sfc': 3.2.36 - '@vue/reactivity': 3.2.36 + '@volar/code-gen': 0.37.7 + '@volar/source-map': 0.37.7 + '@volar/vue-code-gen': 0.37.7 + '@vue/compiler-sfc': 3.2.37 + '@vue/reactivity': 3.2.37 dev: true - /@vue/compiler-core/3.2.36: - resolution: {integrity: sha512-bbyZM5hvBicv0PW3KUfVi+x3ylHnfKG7DOn5wM+f2OztTzTjLEyBb/5yrarIYpmnGitVGbjZqDbODyW4iK8hqw==} + /@vue/compiler-core/3.2.37: + resolution: {integrity: sha512-81KhEjo7YAOh0vQJoSmAD68wLfYqJvoiD4ulyedzF+OEk/bk6/hx3fTNVfuzugIIaTrOx4PGx6pAiBRe5e9Zmg==} dependencies: '@babel/parser': 7.16.6 - '@vue/shared': 3.2.36 + '@vue/shared': 3.2.37 estree-walker: 2.0.2 source-map: 0.6.1 - /@vue/compiler-dom/3.2.36: - resolution: {integrity: sha512-tcOTAOiW4s24QLnq+ON6J+GRONXJ+A/mqKCORi0LSlIh8XQlNnlm24y8xIL8la+ZDgkdbjarQ9ZqYSvEja6gVA==} + /@vue/compiler-dom/3.2.37: + resolution: {integrity: sha512-yxJLH167fucHKxaqXpYk7x8z7mMEnXOw3G2q62FTkmsvNxu4FQSu5+3UMb+L7fjKa26DEzhrmCxAgFLLIzVfqQ==} dependencies: - '@vue/compiler-core': 3.2.36 - '@vue/shared': 3.2.36 + '@vue/compiler-core': 3.2.37 + '@vue/shared': 3.2.37 - /@vue/compiler-sfc/3.2.36: - resolution: {integrity: sha512-AvGb4bTj4W8uQ4BqaSxo7UwTEqX5utdRSMyHy58OragWlt8nEACQ9mIeQh3K4di4/SX+41+pJrLIY01lHAOFOA==} + /@vue/compiler-sfc/3.2.37: + resolution: {integrity: sha512-+7i/2+9LYlpqDv+KTtWhOZH+pa8/HnX/905MdVmAcI/mPQOBwkHHIzrsEsucyOIZQYMkXUiTkmZq5am/NyXKkg==} dependencies: '@babel/parser': 7.16.6 - '@vue/compiler-core': 3.2.36 - '@vue/compiler-dom': 3.2.36 - '@vue/compiler-ssr': 3.2.36 - '@vue/reactivity-transform': 3.2.36 - '@vue/shared': 3.2.36 + '@vue/compiler-core': 3.2.37 + '@vue/compiler-dom': 3.2.37 + '@vue/compiler-ssr': 3.2.37 + '@vue/reactivity-transform': 3.2.37 + '@vue/shared': 3.2.37 estree-walker: 2.0.2 magic-string: 0.25.7 postcss: 8.4.13 source-map: 0.6.1 - /@vue/compiler-ssr/3.2.36: - resolution: {integrity: sha512-+KugInUFRvOxEdLkZwE+W43BqHyhBh0jpYXhmqw1xGq2dmE6J9eZ8UUSOKNhdHtQ/iNLWWeK/wPZkVLUf3YGaw==} + /@vue/compiler-ssr/3.2.37: + resolution: {integrity: sha512-7mQJD7HdXxQjktmsWp/J67lThEIcxLemz1Vb5I6rYJHR5vI+lON3nPGOH3ubmbvYGt8xEUaAr1j7/tIFWiEOqw==} dependencies: - '@vue/compiler-dom': 3.2.36 - '@vue/shared': 3.2.36 + '@vue/compiler-dom': 3.2.37 + '@vue/shared': 3.2.37 /@vue/devtools-api/6.0.13: resolution: {integrity: sha512-T34EjcArVqzANedEZe2kXQ+AZsld2z1ptJlkOGm87+blk+s6udnP4ze/NYqV8lz1o9AIivimN0xxteLlWiWQdg==} dev: false - /@vue/reactivity-transform/3.2.36: - resolution: {integrity: sha512-Jk5o2BhpODC9XTA7o4EL8hSJ4JyrFWErLtClG3NH8wDS7ri9jBDWxI7/549T7JY9uilKsaNM+4pJASLj5dtRwA==} + /@vue/reactivity-transform/3.2.37: + resolution: {integrity: sha512-IWopkKEb+8qpu/1eMKVeXrK0NLw9HicGviJzhJDEyfxTR9e1WtpnnbYkJWurX6WwoFP0sz10xQg8yL8lgskAZg==} dependencies: '@babel/parser': 7.16.6 - '@vue/compiler-core': 3.2.36 - '@vue/shared': 3.2.36 + '@vue/compiler-core': 3.2.37 + '@vue/shared': 3.2.37 estree-walker: 2.0.2 magic-string: 0.25.7 - /@vue/reactivity/3.2.36: - resolution: {integrity: sha512-c2qvopo0crh9A4GXi2/2kfGYMxsJW4tVILrqRPydVGZHhq0fnzy6qmclWOhBFckEhmyxmpHpdJtIRYGeKcuhnA==} + /@vue/reactivity/3.2.37: + resolution: {integrity: sha512-/7WRafBOshOc6m3F7plwzPeCu/RCVv9uMpOwa/5PiY1Zz+WLVRWiy0MYKwmg19KBdGtFWsmZ4cD+LOdVPcs52A==} dependencies: - '@vue/shared': 3.2.36 + '@vue/shared': 3.2.37 - /@vue/runtime-core/3.2.36: - resolution: {integrity: sha512-PTWBD+Lub+1U3/KhbCExrfxyS14hstLX+cBboxVHaz+kXoiDLNDEYAovPtxeTutbqtClIXtft+wcGdC+FUQ9qQ==} + /@vue/runtime-core/3.2.37: + resolution: {integrity: sha512-JPcd9kFyEdXLl/i0ClS7lwgcs0QpUAWj+SKX2ZC3ANKi1U4DOtiEr6cRqFXsPwY5u1L9fAjkinIdB8Rz3FoYNQ==} dependencies: - '@vue/reactivity': 3.2.36 - '@vue/shared': 3.2.36 + '@vue/reactivity': 3.2.37 + '@vue/shared': 3.2.37 - /@vue/runtime-dom/3.2.36: - resolution: {integrity: sha512-gYPYblm7QXHVuBohqNRRT7Wez0f2Mx2D40rb4fleehrJU9CnkjG0phhcGEZFfGwCmHZRqBCRgbFWE98bPULqkg==} + /@vue/runtime-dom/3.2.37: + resolution: {integrity: sha512-HimKdh9BepShW6YozwRKAYjYQWg9mQn63RGEiSswMbW+ssIht1MILYlVGkAGGQbkhSh31PCdoUcfiu4apXJoPw==} dependencies: - '@vue/runtime-core': 3.2.36 - '@vue/shared': 3.2.36 + '@vue/runtime-core': 3.2.37 + '@vue/shared': 3.2.37 csstype: 2.6.17 - /@vue/server-renderer/3.2.36_vue@3.2.36: - resolution: {integrity: sha512-uZE0+jfye6yYXWvAQYeHZv+f50sRryvy16uiqzk3jn8hEY8zTjI+rzlmZSGoE915k+W/Ol9XSw6vxOUD8dGkUg==} + /@vue/server-renderer/3.2.37_vue@3.2.37: + resolution: {integrity: sha512-kLITEJvaYgZQ2h47hIzPh2K3jG8c1zCVbp/o/bzQOyvzaKiCquKS7AaioPI28GNxIsE/zSx+EwWYsNxDCX95MA==} peerDependencies: - vue: 3.2.36 + vue: 3.2.37 dependencies: - '@vue/compiler-ssr': 3.2.36 - '@vue/shared': 3.2.36 - vue: 3.2.36 + '@vue/compiler-ssr': 3.2.37 + '@vue/shared': 3.2.37 + vue: 3.2.37 - /@vue/shared/3.2.36: - resolution: {integrity: sha512-JtB41wXl7Au3+Nl3gD16Cfpj7k/6aCroZ6BbOiCMFCMvrOpkg/qQUXTso2XowaNqBbnkuGHurLAqkLBxNGc1hQ==} + /@vue/shared/3.2.37: + resolution: {integrity: sha512-4rSJemR2NQIo9Klm1vabqWjD8rs/ZaJSzMxkMNeJS6lHiUjjUeYFbooN19NgFjztubEKh3WlZUeOLVdbbUWHsw==} - /@vue/test-utils/2.0.0_vue@3.2.36: + /@vue/test-utils/2.0.0_vue@3.2.37: resolution: {integrity: sha512-zL5kygNq7hONrO1CzaUGprEAklAX+pH8J1MPMCU3Rd2xtSYkZ+PmKU3oEDRg8VAGdL5lNJHzDgrud5amFPtirw==} peerDependencies: vue: ^3.0.1 dependencies: - vue: 3.2.36 + vue: 3.2.37 dev: true - /@vueuse/core/8.6.0_vue@3.2.36: + /@vueuse/core/8.6.0_vue@3.2.37: resolution: {integrity: sha512-VirzExCm/N+QdrEWT7J4uSrvJ5hquKIAU9alQ37kUvIJk9XxCLxmfRnmekYc1kz2+6BnoyuKYXVmrMV351CB4w==} peerDependencies: '@vue/composition-api': ^1.1.0 @@ -731,14 +731,14 @@ packages: optional: true dependencies: '@vueuse/metadata': 8.6.0 - '@vueuse/shared': 8.6.0_vue@3.2.36 - vue: 3.2.36 - vue-demi: 0.12.1_vue@3.2.36 + '@vueuse/shared': 8.6.0_vue@3.2.37 + vue: 3.2.37 + vue-demi: 0.12.1_vue@3.2.37 /@vueuse/metadata/8.6.0: resolution: {integrity: sha512-F+CKPvaExsm7QgRr8y+ZNJFwXasn89rs5wth/HeX9lJ1q8XEt+HJ16Q5Sxh4rfG5YSKXrStveVge8TKvPjMjFA==} - /@vueuse/shared/8.6.0_vue@3.2.36: + /@vueuse/shared/8.6.0_vue@3.2.37: resolution: {integrity: sha512-Y/IVywZo7IfEoSSEtCYpkVEmPV7pU35mEIxV7PbD/D3ly18B3mEsBaPbtDkNM/QP3zAZ5mn4nEkOfddX4uwuIA==} peerDependencies: '@vue/composition-api': ^1.1.0 @@ -749,8 +749,8 @@ packages: vue: optional: true dependencies: - vue: 3.2.36 - vue-demi: 0.12.1_vue@3.2.36 + vue: 3.2.37 + vue-demi: 0.12.1_vue@3.2.37 /abab/2.0.5: resolution: {integrity: sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==} @@ -1176,7 +1176,7 @@ packages: object-is: 1.1.5 object-keys: 1.1.1 object.assign: 4.1.2 - regexp.prototype.flags: 1.3.1 + regexp.prototype.flags: 1.4.3 side-channel: 1.0.4 which-boxed-primitive: 1.0.2 which-collection: 1.0.1 @@ -1184,7 +1184,7 @@ packages: dev: true /deep-is/0.1.3: - resolution: {integrity: sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=} + resolution: {integrity: sha512-GtxAN4HvBachZzm4OnWqc45ESpUCMwkYcsjnsPs23FwJbsO+k4t0k9bQCgOmzIlpHO28+WPK/KRbRk0DDHuuDw==} dev: true /define-properties/1.1.4: @@ -1602,7 +1602,7 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.26.0_xztl6dhthcahlo6akmb2bmjmle + '@typescript-eslint/parser': 5.26.0_ud6rd4xtew5bv4yhvkvu24pzm4 debug: 3.2.7 eslint-import-resolver-node: 0.3.6 find-up: 2.1.0 @@ -1610,35 +1610,35 @@ packages: - supports-color dev: true - /eslint-plugin-antfu/0.25.1_xztl6dhthcahlo6akmb2bmjmle: + /eslint-plugin-antfu/0.25.1_ud6rd4xtew5bv4yhvkvu24pzm4: resolution: {integrity: sha512-xZrk0BIHZFfrUkr2Ff1uZdnzTmCM6ZQccOxpn7/IKfUENe16sSMuZ8YHKaVrUSAMIPoUOFKG2Qpu2UxwIRTd9w==} dependencies: - '@typescript-eslint/utils': 5.26.0_xztl6dhthcahlo6akmb2bmjmle + '@typescript-eslint/utils': 5.26.0_ud6rd4xtew5bv4yhvkvu24pzm4 transitivePeerDependencies: - eslint - supports-color - typescript dev: true - /eslint-plugin-es/4.1.0_eslint@8.16.0: + /eslint-plugin-es/4.1.0_eslint@8.17.0: resolution: {integrity: sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==} engines: {node: '>=8.10.0'} peerDependencies: eslint: '>=4.19.1' dependencies: - eslint: 8.16.0 + eslint: 8.17.0 eslint-utils: 2.1.0 regexpp: 3.2.0 dev: true - /eslint-plugin-eslint-comments/3.2.0_eslint@8.16.0: + /eslint-plugin-eslint-comments/3.2.0_eslint@8.17.0: resolution: {integrity: sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==} engines: {node: '>=6.5.0'} peerDependencies: eslint: '>=4.19.1' dependencies: escape-string-regexp: 1.0.5 - eslint: 8.16.0 + eslint: 8.17.0 ignore: 5.2.0 dev: true @@ -1648,7 +1648,7 @@ packages: htmlparser2: 7.2.0 dev: true - /eslint-plugin-import/2.26.0_grfei5yostfimvqdpf73rlhy3e: + /eslint-plugin-import/2.26.0_n4dyx7lg25q5n6bft3gdtbivxa: resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==} engines: {node: '>=4'} peerDependencies: @@ -1658,12 +1658,12 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 5.26.0_xztl6dhthcahlo6akmb2bmjmle + '@typescript-eslint/parser': 5.26.0_ud6rd4xtew5bv4yhvkvu24pzm4 array-includes: 3.1.5 array.prototype.flat: 1.2.5 debug: 2.6.9 doctrine: 2.1.0 - eslint: 8.16.0 + eslint: 8.17.0 eslint-import-resolver-node: 0.3.6 eslint-module-utils: 2.7.3_zhgf6mw2wzy6dnrak3ta47vb3m has: 1.0.3 @@ -1679,40 +1679,40 @@ packages: - supports-color dev: true - /eslint-plugin-jsonc/2.2.1_eslint@8.16.0: + /eslint-plugin-jsonc/2.2.1_eslint@8.17.0: resolution: {integrity: sha512-ozGjWXhxF3ZfITHmRLuUL6zORh5Dzo0ymwVdxhfFaa4LEtU2S88JIwDYCWAifQLG92x7chqcnZlGUggaPSlfIQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '>=6.0.0' dependencies: - eslint: 8.16.0 - eslint-utils: 3.0.0_eslint@8.16.0 + eslint: 8.17.0 + eslint-utils: 3.0.0_eslint@8.17.0 jsonc-eslint-parser: 2.1.0 natural-compare: 1.4.0 dev: true - /eslint-plugin-markdown/2.2.1_eslint@8.16.0: + /eslint-plugin-markdown/2.2.1_eslint@8.17.0: resolution: {integrity: sha512-FgWp4iyYvTFxPwfbxofTvXxgzPsDuSKHQy2S+a8Ve6savbujey+lgrFFbXQA0HPygISpRYWYBjooPzhYSF81iA==} engines: {node: ^8.10.0 || ^10.12.0 || >= 12.0.0} peerDependencies: eslint: '>=6.0.0' dependencies: - eslint: 8.16.0 + eslint: 8.17.0 mdast-util-from-markdown: 0.8.5 transitivePeerDependencies: - supports-color dev: true - /eslint-plugin-n/15.2.0_eslint@8.16.0: + /eslint-plugin-n/15.2.0_eslint@8.17.0: resolution: {integrity: sha512-lWLg++jGwC88GDGGBX3CMkk0GIWq0y41aH51lavWApOKcMQcYoL3Ayd0lEdtD3SnQtR+3qBvWQS3qGbR2BxRWg==} engines: {node: '>=12.22.0'} peerDependencies: eslint: '>=7.0.0' dependencies: builtins: 4.0.0 - eslint: 8.16.0 - eslint-plugin-es: 4.1.0_eslint@8.16.0 - eslint-utils: 3.0.0_eslint@8.16.0 + eslint: 8.17.0 + eslint-plugin-es: 4.1.0_eslint@8.17.0 + eslint-utils: 3.0.0_eslint@8.17.0 ignore: 5.2.0 is-core-module: 2.8.1 minimatch: 3.1.2 @@ -1720,16 +1720,16 @@ packages: semver: 6.3.0 dev: true - /eslint-plugin-promise/6.0.0_eslint@8.16.0: + /eslint-plugin-promise/6.0.0_eslint@8.17.0: resolution: {integrity: sha512-7GPezalm5Bfi/E22PnQxDWH2iW9GTvAlUNTztemeHb6c1BniSyoeTrM87JkC0wYdi6aQrZX9p2qEiAno8aTcbw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 dependencies: - eslint: 8.16.0 + eslint: 8.17.0 dev: true - /eslint-plugin-react/7.30.0_eslint@8.16.0: + /eslint-plugin-react/7.30.0_eslint@8.17.0: resolution: {integrity: sha512-RgwH7hjW48BleKsYyHK5vUAvxtE9SMPDKmcPRQgtRCYaZA0XQPt5FSkrU3nhz5ifzMZcA8opwmRJ2cmOO8tr5A==} engines: {node: '>=4'} peerDependencies: @@ -1738,7 +1738,7 @@ packages: array-includes: 3.1.5 array.prototype.flatmap: 1.3.0 doctrine: 2.1.0 - eslint: 8.16.0 + eslint: 8.17.0 estraverse: 5.3.0 jsx-ast-utils: 3.2.0 minimatch: 3.1.2 @@ -1752,7 +1752,7 @@ packages: string.prototype.matchall: 4.0.7 dev: true - /eslint-plugin-unicorn/42.0.0_eslint@8.16.0: + /eslint-plugin-unicorn/42.0.0_eslint@8.17.0: resolution: {integrity: sha512-ixBsbhgWuxVaNlPTT8AyfJMlhyC5flCJFjyK3oKE8TRrwBnaHvUbuIkCM1lqg8ryYrFStL/T557zfKzX4GKSlg==} engines: {node: '>=12'} peerDependencies: @@ -1761,8 +1761,8 @@ packages: '@babel/helper-validator-identifier': 7.16.7 ci-info: 3.3.0 clean-regexp: 1.0.0 - eslint: 8.16.0 - eslint-utils: 3.0.0_eslint@8.16.0 + eslint: 8.17.0 + eslint-utils: 3.0.0_eslint@8.17.0 esquery: 1.4.0 indent-string: 4.0.0 is-builtin-module: 3.1.0 @@ -1775,32 +1775,32 @@ packages: strip-indent: 3.0.0 dev: true - /eslint-plugin-vue/9.0.1_eslint@8.16.0: + /eslint-plugin-vue/9.0.1_eslint@8.17.0: resolution: {integrity: sha512-/w/9/vzz+4bSYtp5UqXgJ0CfycXTMtpp6lkz7/fMp0CcJxPWyRP6Pr88ihhrsNEcVt2ZweMupWRNYa+5Md41LQ==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 dependencies: - eslint: 8.16.0 - eslint-utils: 3.0.0_eslint@8.16.0 + eslint: 8.17.0 + eslint-utils: 3.0.0_eslint@8.17.0 natural-compare: 1.4.0 nth-check: 2.0.1 postcss-selector-parser: 6.0.10 semver: 7.3.7 - vue-eslint-parser: 9.0.2_eslint@8.16.0 + vue-eslint-parser: 9.0.2_eslint@8.17.0 xml-name-validator: 4.0.0 transitivePeerDependencies: - supports-color dev: true - /eslint-plugin-yml/1.0.0_eslint@8.16.0: + /eslint-plugin-yml/1.0.0_eslint@8.17.0: resolution: {integrity: sha512-0RVoUFh5vpznE2DIP5agSpWO/nU8GgAWwoTAHWopU2X+1SCB5ykHU6DwS0GrZ5Hvejtk6CcADQllpQQJB4C5QA==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: eslint: '>=6.0.0' dependencies: debug: 4.3.4 - eslint: 8.16.0 + eslint: 8.17.0 lodash: 4.17.21 natural-compare: 1.4.0 yaml-eslint-parser: 1.0.1 @@ -1831,13 +1831,13 @@ packages: eslint-visitor-keys: 1.3.0 dev: true - /eslint-utils/3.0.0_eslint@8.16.0: + /eslint-utils/3.0.0_eslint@8.17.0: resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} peerDependencies: eslint: '>=5' dependencies: - eslint: 8.16.0 + eslint: 8.17.0 eslint-visitor-keys: 2.1.0 dev: true @@ -1856,8 +1856,8 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /eslint/8.16.0: - resolution: {integrity: sha512-MBndsoXY/PeVTDJeWsYj7kLZ5hQpJOfMYLsF6LicLHQWbRDG19lK5jOix4DPl8yY4SUFcE3txy86OzFLWT+yoA==} + /eslint/8.17.0: + resolution: {integrity: sha512-gq0m0BTJfci60Fz4nczYxNAlED+sMcihltndR8t9t1evnU/azx53x3t2UHXC/uRjcbvRw/XctpaNygSTcQD+Iw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: @@ -1870,7 +1870,7 @@ packages: doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.1.1 - eslint-utils: 3.0.0_eslint@8.16.0 + eslint-utils: 3.0.0_eslint@8.17.0 eslint-visitor-keys: 3.3.0 espree: 9.3.2 esquery: 1.4.0 @@ -1909,6 +1909,13 @@ packages: eslint-visitor-keys: 3.3.0 dev: true + /esprima-extract-comments/1.1.0: + resolution: {integrity: sha512-sBQUnvJwpeE9QnPrxh7dpI/dp67erYG4WXEAreAMoelPRpMR7NWb4YtwRPn9b+H1uLQKl/qS8WYmyaljTpjIsw==} + engines: {node: '>=4'} + dependencies: + esprima: 4.0.1 + dev: true + /esprima/4.0.1: resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} engines: {node: '>=4'} @@ -1962,6 +1969,14 @@ packages: strip-final-newline: 2.0.0 dev: true + /extract-comments/1.1.0: + resolution: {integrity: sha512-dzbZV2AdSSVW/4E7Ti5hZdHWbA+Z80RJsJhr5uiL10oyjl/gy7/o+HI1HwK4/WSZhlq4SNKU3oUzXlM13Qx02Q==} + engines: {node: '>=6'} + dependencies: + esprima-extract-comments: 1.1.0 + parse-code-context: 1.0.0 + dev: true + /fast-deep-equal/3.1.3: resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} dev: true @@ -1982,7 +1997,7 @@ packages: dev: true /fast-levenshtein/2.0.6: - resolution: {integrity: sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=} + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} dev: true /fastq/1.11.1: @@ -2041,7 +2056,7 @@ packages: dev: true /foreach/2.0.5: - resolution: {integrity: sha1-C+4AUBiusmDQo6865ljdATbsG5k=} + resolution: {integrity: sha512-ZBbtRiapkZYLsqoPyZOR+uPfto0GRMNQN1GwzZtZt7iZvPPbDDQV0JF5Hx4o/QFQ5c0vyuoZ98T8RSBbopzWtA==} dev: true /form-data/4.0.0: @@ -2054,7 +2069,7 @@ packages: dev: true /fs.realpath/1.0.0: - resolution: {integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8=} + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} dev: true /fsevents/2.3.2: @@ -2080,7 +2095,7 @@ packages: dev: true /functional-red-black-tree/1.0.1: - resolution: {integrity: sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=} + resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==} dev: true /functions-have-names/1.2.3: @@ -2269,7 +2284,7 @@ packages: dev: true /imurmurhash/0.1.4: - resolution: {integrity: sha1-khi5srkoojixPcT7a21XbyMUU+o=} + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} engines: {node: '>=0.8.19'} dev: true @@ -2279,7 +2294,7 @@ packages: dev: true /inflight/1.0.6: - resolution: {integrity: sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=} + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} dependencies: once: 1.4.0 wrappy: 1.0.2 @@ -2372,7 +2387,7 @@ packages: dev: true /is-extglob/2.1.1: - resolution: {integrity: sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=} + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} engines: {node: '>=0.10.0'} dev: true @@ -2479,7 +2494,7 @@ packages: dev: true /isexe/2.0.0: - resolution: {integrity: sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=} + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} dev: true /jiti/1.13.0: @@ -2549,7 +2564,7 @@ packages: dev: true /json-stable-stringify-without-jsonify/1.0.1: - resolution: {integrity: sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=} + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} dev: true /json5/1.0.1: @@ -2592,7 +2607,7 @@ packages: dev: true /levn/0.3.0: - resolution: {integrity: sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=} + resolution: {integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==} engines: {node: '>= 0.8.0'} dependencies: prelude-ls: 1.1.2 @@ -2797,7 +2812,7 @@ packages: hasBin: true /natural-compare/1.4.0: - resolution: {integrity: sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=} + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} dev: true /node-fetch-native/0.1.3: @@ -2911,7 +2926,7 @@ packages: dev: true /once/1.4.0: - resolution: {integrity: sha1-WDsap3WWHUsROsF9nFC6753Xa9E=} + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} dependencies: wrappy: 1.0.2 dev: true @@ -3006,6 +3021,11 @@ packages: callsites: 3.1.0 dev: true + /parse-code-context/1.0.0: + resolution: {integrity: sha512-OZQaqKaQnR21iqhlnPfVisFjBWjhnMl5J9MgbP8xC+EwoVqbXrq78lp+9Zb3ahmLzrIX5Us/qbvBnaS3hkH6OA==} + engines: {node: '>=6'} + dev: true + /parse-entities/2.0.0: resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==} dependencies: @@ -3042,7 +3062,7 @@ packages: dev: true /path-is-absolute/1.0.1: - resolution: {integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18=} + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} engines: {node: '>=0.10.0'} dev: true @@ -3097,9 +3117,9 @@ packages: engines: {node: '>=4'} dev: true - /pnpm/7.1.7: - resolution: {integrity: sha512-8+IAfyunrOHfNmVu03E9rSBVUgypFGMKeyhVif0Drv/gcWgXuzxSBkCxrfNJbEf0cHtA+ftTqMQ20uSlrtnSEg==} - engines: {node: '>=14.19'} + /pnpm/7.2.1: + resolution: {integrity: sha512-Z2Wg7YHxeit2U+0aSj+doBPF9+ER0e3VLOGuJOQbk8rzIxK6zMtrQ0ICieCUGPWRM0Vbwj8yIcTKzO22Yhs/Cg==} + engines: {node: '>=14.6'} hasBin: true dev: true @@ -3120,7 +3140,7 @@ packages: source-map-js: 1.0.2 /prelude-ls/1.1.2: - resolution: {integrity: sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=} + resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==} engines: {node: '>= 0.8.0'} dev: true @@ -3185,14 +3205,6 @@ packages: hasBin: true dev: true - /regexp.prototype.flags/1.3.1: - resolution: {integrity: sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - define-properties: 1.1.4 - dev: true - /regexp.prototype.flags/1.4.3: resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==} engines: {node: '>= 0.4'} @@ -3422,6 +3434,12 @@ packages: engines: {node: '>=8'} dev: true + /strip-literal/0.3.0: + resolution: {integrity: sha512-J+lfm3Pw5nzURj2B8acyvUSBqs3JbjM8WAfrmeH3qcn32+ew6kFwbZFV9+X8k9UOIAkQw9WPSzFZy3083c7l5Q==} + dependencies: + acorn: 8.7.1 + dev: true + /supports-color/5.5.0: resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} engines: {node: '>=4'} @@ -3446,7 +3464,7 @@ packages: dev: true /text-table/0.2.0: - resolution: {integrity: sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=} + resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} dev: true /tinypool/0.1.3: @@ -3460,7 +3478,7 @@ packages: dev: true /to-fast-properties/2.0.0: - resolution: {integrity: sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=} + resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} engines: {node: '>=4'} /to-regex-range/5.0.1: @@ -3504,18 +3522,18 @@ packages: resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} dev: true - /tsutils/3.21.0_typescript@4.7.2: + /tsutils/3.21.0_typescript@4.7.3: resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} engines: {node: '>= 6'} peerDependencies: typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' dependencies: tslib: 1.14.1 - typescript: 4.7.2 + typescript: 4.7.3 dev: true /type-check/0.3.2: - resolution: {integrity: sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=} + resolution: {integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==} engines: {node: '>= 0.8.0'} dependencies: prelude-ls: 1.1.2 @@ -3548,8 +3566,8 @@ packages: engines: {node: '>=8'} dev: true - /typescript/4.7.2: - resolution: {integrity: sha512-Mamb1iX2FDUpcTRzltPxgWMKy3fhg0TN378ylbktPGPK/99KbDtMQ4W1hwgsbPAsG3a0xKa1vmw4VKZQbkvz5A==} + /typescript/4.7.3: + resolution: {integrity: sha512-WOkT3XYvrpXx4vMMqlD+8R8R37fZkjyLGlxavMc4iB8lrl8L0DeTcHbYgw/v0N/z9wAFsgBhcsF0ruoySS22mA==} engines: {node: '>=4.2.0'} hasBin: true dev: true @@ -3580,8 +3598,8 @@ packages: engines: {node: '>=12.18'} dev: true - /unimport/0.2.5_vite@2.9.9: - resolution: {integrity: sha512-1YreHVa6vUtRANhtKROtniBY01PXM0ol857tlI3HaQHNLcuQKqWUCAfvZC/GipotKrMVm4LV9ZQ4u1s9lrrDpg==} + /unimport/0.2.7_vite@2.9.12: + resolution: {integrity: sha512-lnClmDG8f4ZfLrAXSbHoHXdmYPREW+W0Z99+E/aomHNbvwSBsQVTH6dSChHAdyjp3LNicj/jQgq5DQN8Ho8huA==} dependencies: '@rollup/pluginutils': 4.2.1 escape-string-regexp: 5.0.0 @@ -3591,7 +3609,8 @@ packages: mlly: 0.5.2 pathe: 0.3.0 scule: 0.2.1 - unplugin: 0.6.3_vite@2.9.9 + strip-literal: 0.3.0 + unplugin: 0.7.0_vite@2.9.12 transitivePeerDependencies: - esbuild - rollup @@ -3610,32 +3629,37 @@ packages: engines: {node: '>= 4.0.0'} dev: true - /unocss/0.37.2_vite@2.9.9: - resolution: {integrity: sha512-1lgWX9l1m9Y12ZRBVwyS7T8DGscWRfEvcawdMMftd5RQwM0Vx0wU3Sf4y9qfAzeN5KnuO0qkbA5Kn2/ZXkiUbA==} + /unocss/0.39.0_vite@2.9.12: + resolution: {integrity: sha512-MdFYHqw8+AepiyMQUtD3uUVlHjEdT5jU5/qMx+S1PVOr/lug67g8V8xj9N0HaAU1h3jvLz+U5ACQhsx7F7oRLA==} engines: {node: '>=14'} + peerDependencies: + '@unocss/webpack': 0.39.0 + peerDependenciesMeta: + '@unocss/webpack': + optional: true dependencies: - '@unocss/cli': 0.37.2 - '@unocss/core': 0.37.2 - '@unocss/preset-attributify': 0.37.2 - '@unocss/preset-icons': 0.37.2 - '@unocss/preset-mini': 0.37.2 - '@unocss/preset-tagify': 0.37.2 - '@unocss/preset-typography': 0.37.2 - '@unocss/preset-uno': 0.37.2 - '@unocss/preset-web-fonts': 0.37.2 - '@unocss/preset-wind': 0.37.2 - '@unocss/reset': 0.37.2 - '@unocss/transformer-compile-class': 0.37.2 - '@unocss/transformer-directives': 0.37.2 - '@unocss/transformer-variant-group': 0.37.2 - '@unocss/vite': 0.37.2_vite@2.9.9 + '@unocss/cli': 0.39.0 + '@unocss/core': 0.39.0 + '@unocss/preset-attributify': 0.39.0 + '@unocss/preset-icons': 0.39.0 + '@unocss/preset-mini': 0.39.0 + '@unocss/preset-tagify': 0.39.0 + '@unocss/preset-typography': 0.39.0 + '@unocss/preset-uno': 0.39.0 + '@unocss/preset-web-fonts': 0.39.0 + '@unocss/preset-wind': 0.39.0 + '@unocss/reset': 0.39.0 + '@unocss/transformer-compile-class': 0.39.0 + '@unocss/transformer-directives': 0.39.0 + '@unocss/transformer-variant-group': 0.39.0 + '@unocss/vite': 0.39.0_vite@2.9.12 transitivePeerDependencies: - supports-color - vite dev: true - /unplugin-auto-import/0.8.7_2f4luahfrvm5qufmejfjusqqgu: - resolution: {integrity: sha512-xepkl/lzlPmWym/ZqjgKpev30S5402qZYHnRZ7MQ78+WxBykvUw69PB0awWcWJ7atswNs6LkDRpGNqzjFCEH4w==} + /unplugin-auto-import/0.8.8_xnp3iobkgue47hz2kuxdzi7u6a: + resolution: {integrity: sha512-cVZ79zMR1v4VCZ9emFTUnltmazCc2B4hObyVrxJdlgJ2sK8qub6JfjFt38rCF6MVEddkHiWCU6wZR1qbdqe+ig==} engines: {node: '>=14'} peerDependencies: '@vueuse/core': '*' @@ -3645,11 +3669,11 @@ packages: dependencies: '@antfu/utils': 0.5.2 '@rollup/pluginutils': 4.2.1 - '@vueuse/core': 8.6.0_vue@3.2.36 + '@vueuse/core': 8.6.0_vue@3.2.37 local-pkg: 0.4.1 magic-string: 0.26.2 - unimport: 0.2.5_vite@2.9.9 - unplugin: 0.6.3_vite@2.9.9 + unimport: 0.2.7_vite@2.9.12 + unplugin: 0.7.0_vite@2.9.12 transitivePeerDependencies: - esbuild - rollup @@ -3657,7 +3681,7 @@ packages: - webpack dev: true - /unplugin-vue-components/0.19.6_vite@2.9.9+vue@3.2.36: + /unplugin-vue-components/0.19.6_vite@2.9.12+vue@3.2.37: resolution: {integrity: sha512-APvrJ9Hpid1MLT0G4PWerMJgARhNw6dzz0pcCwCxaO2DR7VyvDacMqjOQNC6ukq7FSw3wzD8VH+9i3EFXwkGmw==} engines: {node: '>=14'} peerDependencies: @@ -3679,8 +3703,8 @@ packages: magic-string: 0.26.2 minimatch: 5.0.1 resolve: 1.22.0 - unplugin: 0.6.3_vite@2.9.9 - vue: 3.2.36 + unplugin: 0.6.3_vite@2.9.12 + vue: 3.2.37 transitivePeerDependencies: - esbuild - rollup @@ -3689,7 +3713,7 @@ packages: - webpack dev: true - /unplugin/0.6.3_vite@2.9.9: + /unplugin/0.6.3_vite@2.9.12: resolution: {integrity: sha512-CoW88FQfCW/yabVc4bLrjikN9HC8dEvMU4O7B6K2jsYMPK0l6iAnd9dpJwqGcmXJKRCU9vwSsy653qg+RK0G6A==} peerDependencies: esbuild: '>=0.13' @@ -3707,7 +3731,31 @@ packages: optional: true dependencies: chokidar: 3.5.3 - vite: 2.9.9 + vite: 2.9.12 + webpack-sources: 3.2.3 + webpack-virtual-modules: 0.4.3 + dev: true + + /unplugin/0.7.0_vite@2.9.12: + resolution: {integrity: sha512-OsiFrgybmqm5bGuaodvbLYhqUrvGuRHRMZDhddKEXTDbuQ1x+hR7M1WpQguXj03whVYjEYChhFo738cZH5RNig==} + 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: + acorn: 8.7.1 + chokidar: 3.5.3 + vite: 2.9.12 webpack-sources: 3.2.3 webpack-virtual-modules: 0.4.3 dev: true @@ -3733,8 +3781,8 @@ packages: spdx-expression-parse: 3.0.1 dev: true - /vite-plugin-pages/0.23.0_vite@2.9.9: - resolution: {integrity: sha512-KEfW6WBfACCjMXoQY0mLEzfifwCTq6FlvvtXs2XSEe9Pd4QadZTNzHOPKHDsKpVXysRzbYxE8/c/Ao9+nXsQ7w==} + /vite-plugin-pages/0.24.0_vite@2.9.12: + resolution: {integrity: sha512-qGl3R1NA7x9To5yDexkAZwt29tHgGaoylPJpe/kzHHNRXmGQdSxLgwuY56Uc1ISAb9eeVVjnPXVZ7Q44sEho1A==} peerDependencies: '@vue/compiler-sfc': ^3.0.0 vite: ^2.0.0 @@ -3745,18 +3793,19 @@ packages: '@types/debug': 4.1.7 debug: 4.3.4 deep-equal: 2.0.5 + extract-comments: 1.1.0 fast-glob: 3.2.11 json5: 2.2.1 local-pkg: 0.4.1 picocolors: 1.0.0 - vite: 2.9.9 - yaml: 2.0.1 + vite: 2.9.12 + yaml: 2.1.1 transitivePeerDependencies: - supports-color dev: true - /vite/2.9.9: - resolution: {integrity: sha512-ffaam+NgHfbEmfw/Vuh6BHKKlI/XIAhxE5QSS7gFLIngxg171mg1P3a4LSRME0z2ZU1ScxoKzphkipcYwSD5Ew==} + /vite/2.9.12: + resolution: {integrity: sha512-suxC36dQo9Rq1qMB2qiRorNJtJAdxguu5TMvBHOc/F370KvqAe9t48vYp+/TbPKRNrMh/J55tOUmkuIqstZaew==} engines: {node: '>=12.2.0'} hasBin: true peerDependencies: @@ -3779,8 +3828,8 @@ packages: fsevents: 2.3.2 dev: true - /vitest/0.13.1_jsdom@19.0.0: - resolution: {integrity: sha512-CfSBf7YFw/i8HumSUQRtZKs0aV91DC9WU8nAgIJAlawKHaFuPHQohDwOTPIFgrxySiuFYUa0Yohf9gDFfBwjxA==} + /vitest/0.14.2_jsdom@19.0.0: + resolution: {integrity: sha512-vXQUl8OUCqHmxKWscMGL+6Xl1pBJmYHZ8N85iNpLGrirAC2vhspu7b73ShRcLonmZT44BYZW+LBAVvn0L4jyVA==} engines: {node: '>=v14.16.0'} hasBin: true peerDependencies: @@ -3806,7 +3855,7 @@ packages: local-pkg: 0.4.1 tinypool: 0.1.3 tinyspy: 0.3.2 - vite: 2.9.9 + vite: 2.9.12 transitivePeerDependencies: - less - sass @@ -3814,7 +3863,7 @@ packages: - supports-color dev: true - /vue-demi/0.12.1_vue@3.2.36: + /vue-demi/0.12.1_vue@3.2.37: resolution: {integrity: sha512-QL3ny+wX8c6Xm1/EZylbgzdoDolye+VpCXRhI2hug9dJTP3OUJ3lmiKN3CsVV3mOJKwFi0nsstbgob0vG7aoIw==} engines: {node: '>=12'} hasBin: true @@ -3826,16 +3875,16 @@ packages: '@vue/composition-api': optional: true dependencies: - vue: 3.2.36 + vue: 3.2.37 - /vue-eslint-parser/9.0.2_eslint@8.16.0: + /vue-eslint-parser/9.0.2_eslint@8.17.0: resolution: {integrity: sha512-uCPQwTGjOtAYrwnU+76pYxalhjsh7iFBsHwBqDHiOPTxtICDaraO4Szw54WFTNZTAEsgHHzqFOu1mmnBOBRzDA==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: eslint: '>=6.0.0' dependencies: debug: 4.3.4 - eslint: 8.16.0 + eslint: 8.17.0 eslint-scope: 7.1.1 eslint-visitor-keys: 3.3.0 espree: 9.3.2 @@ -3846,33 +3895,33 @@ packages: - supports-color dev: true - /vue-router/4.0.15_vue@3.2.36: - resolution: {integrity: sha512-xa+pIN9ZqORdIW1MkN2+d9Ui2pCM1b/UMgwYUCZOiFYHAvz/slKKBDha8DLrh5aCG/RibtrpyhKjKOZ85tYyWg==} + /vue-router/4.0.16_vue@3.2.37: + resolution: {integrity: sha512-JcO7cb8QJLBWE+DfxGUL3xUDOae/8nhM1KVdnudadTAORbuxIC/xAydC5Zr/VLHUDQi1ppuTF5/rjBGzgzrJNA==} peerDependencies: vue: ^3.2.0 dependencies: '@vue/devtools-api': 6.0.13 - vue: 3.2.36 + vue: 3.2.37 dev: false - /vue-tsc/0.36.0_typescript@4.7.2: - resolution: {integrity: sha512-pxQup47DV0jlWMTpqSSqtBDT6k3vW7+V1PmK/G7AzEkoxCFaKs2oogkpKvrwIYRwJtGt2aLt6E0Q+1DMaHrM3w==} + /vue-tsc/0.37.7_typescript@4.7.3: + resolution: {integrity: sha512-OZtcPh/me10Oc0fBckl8eq0i64X0JnHgSPtcOTMMsA84Imt7q6f4M/4RNtvD1C+X2q8g0MGNyzqPVm5c/Uw8ww==} hasBin: true peerDependencies: typescript: '*' dependencies: - '@volar/vue-typescript': 0.36.0 - typescript: 4.7.2 + '@volar/vue-typescript': 0.37.7 + typescript: 4.7.3 dev: true - /vue/3.2.36: - resolution: {integrity: sha512-5yTXmrE6gW8IQgttzHW5bfBiFA6mx35ZXHjGLDmKYzW6MMmYvCwuKybANRepwkMYeXw2v1buGg3/lPICY5YlZw==} + /vue/3.2.37: + resolution: {integrity: sha512-bOKEZxrm8Eh+fveCqS1/NkG/n6aMidsI6hahas7pa0w/l7jkbssJVsRhVDs07IdDq7h9KHswZOgItnwJAgtVtQ==} dependencies: - '@vue/compiler-dom': 3.2.36 - '@vue/compiler-sfc': 3.2.36 - '@vue/runtime-dom': 3.2.36 - '@vue/server-renderer': 3.2.36_vue@3.2.36 - '@vue/shared': 3.2.36 + '@vue/compiler-dom': 3.2.37 + '@vue/compiler-sfc': 3.2.37 + '@vue/runtime-dom': 3.2.37 + '@vue/server-renderer': 3.2.37_vue@3.2.37 + '@vue/shared': 3.2.37 /w3c-hr-time/1.0.2: resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==} @@ -3966,7 +4015,7 @@ packages: dev: true /wrappy/1.0.2: - resolution: {integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=} + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} dev: true /ws/8.3.0: @@ -4001,11 +4050,11 @@ packages: dependencies: eslint-visitor-keys: 3.3.0 lodash: 4.17.21 - yaml: 2.0.1 + yaml: 2.1.1 dev: true - /yaml/2.0.1: - resolution: {integrity: sha512-1NpAYQ3wjzIlMs0mgdBmYzLkFgWBIWrzYVDYfrixhoFNNgJ444/jT2kUT2sicRbJES3oQYRZugjB6Ro8SjKeFg==} + /yaml/2.1.1: + resolution: {integrity: sha512-o96x3OPo8GjWeSLF+wOAbrPfhFOGY0W00GNaxCDv+9hkcDJEnev1yh8S7pgHF0ik6zc8sQLuL8hjHjJULZp8bw==} engines: {node: '>= 14'} dev: true diff --git a/tsconfig.json b/tsconfig.json index 8203793..c3ca8ac 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -12,6 +12,7 @@ "resolveJsonModule": true, "noUnusedLocals": true, "strictNullChecks": true, + "allowJs": true, "forceConsistentCasingInFileNames": true, "types": [ "vite/client",