Commit ee4829c15d7c8e978eb616edb7f1e61c258d469b

Authored by Vben
1 parent c030567b

fix(server): grammatical errors

.husky/lintstagedrc.js
@@ -3,6 +3,6 @@ module.exports = { @@ -3,6 +3,6 @@ module.exports = {
3 '{!(package)*.json,*.code-snippets,.!(browserslist)*rc}': ['prettier --write--parser json'], 3 '{!(package)*.json,*.code-snippets,.!(browserslist)*rc}': ['prettier --write--parser json'],
4 'package.json': ['prettier --write'], 4 'package.json': ['prettier --write'],
5 '*.vue': ['eslint --fix', 'prettier --write', 'stylelint --fix'], 5 '*.vue': ['eslint --fix', 'prettier --write', 'stylelint --fix'],
6 - '*.{scss,less,styl,css,html}': ['stylelint --fix', 'prettier --write'], 6 + '*.{scss,less,styl,html}': ['stylelint --fix', 'prettier --write'],
7 '*.md': ['prettier --write'], 7 '*.md': ['prettier --write'],
8 }; 8 };
build/vite/plugin/html.ts
@@ -12,7 +12,7 @@ import { GLOB_CONFIG_FILE_NAME } from '../../constant'; @@ -12,7 +12,7 @@ import { GLOB_CONFIG_FILE_NAME } from '../../constant';
12 export function configHtmlPlugin(env: ViteEnv, isBuild: boolean) { 12 export function configHtmlPlugin(env: ViteEnv, isBuild: boolean) {
13 const { VITE_GLOB_APP_TITLE, VITE_PUBLIC_PATH } = env; 13 const { VITE_GLOB_APP_TITLE, VITE_PUBLIC_PATH } = env;
14 14
15 - const path = VITE_PUBLIC_PATH?.endsWith('/') ? VITE_PUBLIC_PATH : `${VITE_PUBLIC_PATH}/`; 15 + const path = VITE_PUBLIC_PATH.endsWith('/') ? VITE_PUBLIC_PATH : `${VITE_PUBLIC_PATH}/`;
16 16
17 const getAppConfigSrc = () => { 17 const getAppConfigSrc = () => {
18 return `${path || '/'}${GLOB_CONFIG_FILE_NAME}?v=${pkg.version}-${new Date().getTime()}`; 18 return `${path || '/'}${GLOB_CONFIG_FILE_NAME}?v=${pkg.version}-${new Date().getTime()}`;
build/vite/plugin/visualizer.ts
@@ -9,9 +9,7 @@ export function configVisualizerConfig() { @@ -9,9 +9,7 @@ export function configVisualizerConfig() {
9 return visualizer({ 9 return visualizer({
10 filename: './node_modules/.cache/visualizer/stats.html', 10 filename: './node_modules/.cache/visualizer/stats.html',
11 open: true, 11 open: true,
12 - // @ts-ignore  
13 gzipSize: true, 12 gzipSize: true,
14 - // @ts-ignore  
15 brotliSize: true, 13 brotliSize: true,
16 }) as Plugin; 14 }) as Plugin;
17 } 15 }
package.json
@@ -70,13 +70,12 @@ @@ -70,13 +70,12 @@
70 "@types/nprogress": "^0.2.0", 70 "@types/nprogress": "^0.2.0",
71 "@types/qrcode": "^1.4.0", 71 "@types/qrcode": "^1.4.0",
72 "@types/qs": "^6.9.6", 72 "@types/qs": "^6.9.6",
73 - "@types/rollup-plugin-visualizer": "^2.6.0",  
74 "@types/sortablejs": "^1.10.6", 73 "@types/sortablejs": "^1.10.6",
75 "@typescript-eslint/eslint-plugin": "^4.20.0", 74 "@typescript-eslint/eslint-plugin": "^4.20.0",
76 "@typescript-eslint/parser": "^4.20.0", 75 "@typescript-eslint/parser": "^4.20.0",
77 "@vitejs/plugin-legacy": "^1.3.2", 76 "@vitejs/plugin-legacy": "^1.3.2",
78 "@vitejs/plugin-vue": "^1.2.1", 77 "@vitejs/plugin-vue": "^1.2.1",
79 - "@vitejs/plugin-vue-jsx": "^1.1.2", 78 + "@vitejs/plugin-vue-jsx": "^1.1.3",
80 "@vue/compiler-sfc": "3.0.10", 79 "@vue/compiler-sfc": "3.0.10",
81 "autoprefixer": "^10.2.5", 80 "autoprefixer": "^10.2.5",
82 "commitizen": "^4.2.3", 81 "commitizen": "^4.2.3",
@@ -100,7 +99,7 @@ @@ -100,7 +99,7 @@
100 "prettier": "^2.2.1", 99 "prettier": "^2.2.1",
101 "pretty-quick": "^3.1.0", 100 "pretty-quick": "^3.1.0",
102 "rimraf": "^3.0.2", 101 "rimraf": "^3.0.2",
103 - "rollup-plugin-visualizer": "4.2.2", 102 + "rollup-plugin-visualizer": "5.0.4",
104 "stylelint": "^13.12.0", 103 "stylelint": "^13.12.0",
105 "stylelint-config-prettier": "^8.0.2", 104 "stylelint-config-prettier": "^8.0.2",
106 "stylelint-config-standard": "^21.0.0", 105 "stylelint-config-standard": "^21.0.0",
@@ -111,18 +110,19 @@ @@ -111,18 +110,19 @@
111 "vite-plugin-compression": "^0.2.3", 110 "vite-plugin-compression": "^0.2.3",
112 "vite-plugin-html": "^2.0.3", 111 "vite-plugin-html": "^2.0.3",
113 "vite-plugin-imagemin": "^0.2.9", 112 "vite-plugin-imagemin": "^0.2.9",
114 - "vite-plugin-mock": "^2.4.1", 113 + "vite-plugin-mock": "^2.4.2",
115 "vite-plugin-purge-icons": "^0.7.0", 114 "vite-plugin-purge-icons": "^0.7.0",
116 "vite-plugin-pwa": "^0.6.4", 115 "vite-plugin-pwa": "^0.6.4",
117 "vite-plugin-style-import": "^0.9.1", 116 "vite-plugin-style-import": "^0.9.1",
118 "vite-plugin-svg-icons": "^0.4.0", 117 "vite-plugin-svg-icons": "^0.4.0",
119 "vite-plugin-theme": "^0.5.0", 118 "vite-plugin-theme": "^0.5.0",
120 - "vite-plugin-windicss": "0.10.4", 119 + "vite-plugin-windicss": "0.11.4",
121 "vue-eslint-parser": "^7.6.0" 120 "vue-eslint-parser": "^7.6.0"
122 }, 121 },
123 "resolutions": { 122 "resolutions": {
124 "//": "Used to install imagemin dependencies, because imagemin may not be installed in China.If it is abroad, you can delete it", 123 "//": "Used to install imagemin dependencies, because imagemin may not be installed in China.If it is abroad, you can delete it",
125 - "bin-wrapper": "npm:bin-wrapper-china" 124 + "bin-wrapper": "npm:bin-wrapper-china",
  125 + "rollup": "^2.44.0"
126 }, 126 },
127 "repository": { 127 "repository": {
128 "type": "git", 128 "type": "git",
src/main.ts
1 import '/@/design/index.less'; 1 import '/@/design/index.less';
2 import '@virtual/windi.css'; 2 import '@virtual/windi.css';
3 3
4 -// Do not introduce` on-demand in local development?  
5 -// In the local development for on-demand introduction, the number of browser requests will increase by about 20%.  
6 -// Which may slow down the browser refresh.  
7 -// Therefore, all are introduced in local development, and only introduced on demand in the production environment  
8 -if (import.meta.env.DEV) {  
9 - import('ant-design-vue/dist/antd.less');  
10 -}  
11 -  
12 import { createApp } from 'vue'; 4 import { createApp } from 'vue';
13 import App from './App.vue'; 5 import App from './App.vue';
14 6
@@ -25,6 +17,14 @@ import '/@/router/guard'; @@ -25,6 +17,14 @@ import '/@/router/guard';
25 // Register icon Sprite 17 // Register icon Sprite
26 import 'vite-plugin-svg-icons/register'; 18 import 'vite-plugin-svg-icons/register';
27 19
  20 +// Do not introduce` on-demand in local development?
  21 +// In the local development for on-demand introduction, the number of browser requests will increase by about 20%.
  22 +// Which may slow down the browser refresh.
  23 +// Therefore, all are introduced in local development, and only introduced on demand in the production environment
  24 +if (import.meta.env.DEV) {
  25 + import('ant-design-vue/dist/antd.less');
  26 +}
  27 +
28 (async () => { 28 (async () => {
29 const app = createApp(App); 29 const app = createApp(App);
30 // Register global components 30 // Register global components
src/views/dashboard/analysis/components/GrowCard.vue
@@ -5,7 +5,7 @@ @@ -5,7 +5,7 @@
5 size="small" 5 size="small"
6 :loading="$attrs.loading" 6 :loading="$attrs.loading"
7 :title="item.title" 7 :title="item.title"
8 - class="md:w-1/4 w-full md:mt-0 !mt-4" 8 + class="md:w-1/4 w-full !md:mt-0 !mt-4"
9 :class="[index + 1 < 4 && '!md:mr-4']" 9 :class="[index + 1 < 4 && '!md:mr-4']"
10 :canExpan="false" 10 :canExpan="false"
11 > 11 >
src/views/sys/about/index.vue
@@ -9,9 +9,9 @@ @@ -9,9 +9,9 @@
9 </span> 9 </span>
10 </div> 10 </div>
11 </template> 11 </template>
12 - <Description @register="infoRegister" />  
13 - <Description @register="register" class="my-4" />  
14 - <Description @register="registerDev" /> 12 + <Description @register="infoRegister" class="enter-y" />
  13 + <Description @register="register" class="my-4 enter-y" />
  14 + <Description @register="registerDev" class="enter-y" />
15 </PageWrapper> 15 </PageWrapper>
16 </template> 16 </template>
17 <script lang="ts"> 17 <script lang="ts">
@@ -32,8 +32,10 @@ @@ -32,8 +32,10 @@
32 32
33 const schema: DescItem[] = []; 33 const schema: DescItem[] = [];
34 const devSchema: DescItem[] = []; 34 const devSchema: DescItem[] = [];
  35 +
35 const commonTagRender = (color: string) => (curVal) => h(Tag, { color }, () => curVal); 36 const commonTagRender = (color: string) => (curVal) => h(Tag, { color }, () => curVal);
36 const commonLinkRender = (text: string) => (href) => h('a', { href, target: '_blank' }, text); 37 const commonLinkRender = (text: string) => (href) => h('a', { href, target: '_blank' }, text);
  38 +
37 const infoSchema: DescItem[] = [ 39 const infoSchema: DescItem[] = [
38 { 40 {
39 label: '็‰ˆๆœฌ', 41 label: '็‰ˆๆœฌ',
@@ -77,18 +79,21 @@ @@ -77,18 +79,21 @@
77 Object.keys(devDependencies).forEach((key) => { 79 Object.keys(devDependencies).forEach((key) => {
78 devSchema.push({ field: key, label: key }); 80 devSchema.push({ field: key, label: key });
79 }); 81 });
  82 +
80 const [register] = useDescription({ 83 const [register] = useDescription({
81 title: '็”Ÿไบง็Žฏๅขƒไพ่ต–', 84 title: '็”Ÿไบง็Žฏๅขƒไพ่ต–',
82 data: dependencies, 85 data: dependencies,
83 schema: schema, 86 schema: schema,
84 column: 3, 87 column: 3,
85 }); 88 });
  89 +
86 const [registerDev] = useDescription({ 90 const [registerDev] = useDescription({
87 title: 'ๅผ€ๅ‘็Žฏๅขƒไพ่ต–', 91 title: 'ๅผ€ๅ‘็Žฏๅขƒไพ่ต–',
88 data: devDependencies, 92 data: devDependencies,
89 schema: devSchema, 93 schema: devSchema,
90 column: 3, 94 column: 3,
91 }); 95 });
  96 +
92 const [infoRegister] = useDescription({ 97 const [infoRegister] = useDescription({
93 title: '้กน็›ฎไฟกๆฏ', 98 title: '้กน็›ฎไฟกๆฏ',
94 data: infoData, 99 data: infoData,
src/views/sys/redirect/index.vue
@@ -3,8 +3,8 @@ @@ -3,8 +3,8 @@
3 </template> 3 </template>
4 <script lang="ts"> 4 <script lang="ts">
5 import { defineComponent, unref } from 'vue'; 5 import { defineComponent, unref } from 'vue';
6 -  
7 import { useRouter } from 'vue-router'; 6 import { useRouter } from 'vue-router';
  7 +
8 export default defineComponent({ 8 export default defineComponent({
9 name: 'Redirect', 9 name: 'Redirect',
10 setup() { 10 setup() {
yarn.lock
@@ -292,12 +292,7 @@ @@ -292,12 +292,7 @@
292 chalk "^2.0.0" 292 chalk "^2.0.0"
293 js-tokens "^4.0.0" 293 js-tokens "^4.0.0"
294 294
295 -"@babel/parser@^7.1.0", "@babel/parser@^7.12.0", "@babel/parser@^7.12.13", "@babel/parser@^7.13.0", "@babel/parser@^7.13.10":  
296 - version "7.13.11"  
297 - resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.13.11.tgz#f93ebfc99d21c1772afbbaa153f47e7ce2f50b88"  
298 - integrity sha512-PhuoqeHoO9fc4ffMEVk4qb/w/s2iOSWohvbHxLtxui0eBg3Lg5gN1U8wp1V1u61hOWkPQJJyJzGH6Y+grwkq8Q==  
299 -  
300 -"@babel/parser@^7.13.9": 295 +"@babel/parser@^7.1.0", "@babel/parser@^7.12.0", "@babel/parser@^7.12.13", "@babel/parser@^7.13.0", "@babel/parser@^7.13.10", "@babel/parser@^7.13.9":
301 version "7.13.13" 296 version "7.13.13"
302 resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.13.13.tgz#42f03862f4aed50461e543270916b47dd501f0df" 297 resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.13.13.tgz#42f03862f4aed50461e543270916b47dd501f0df"
303 integrity sha512-OhsyMrqygfk5v8HmWwOzlYjJrtLaFhF34MrfG/Z73DgYCI6ojNUTUp2TYbtnjo8PegeJp12eamsNettCQjKjVw== 298 integrity sha512-OhsyMrqygfk5v8HmWwOzlYjJrtLaFhF34MrfG/Z73DgYCI6ojNUTUp2TYbtnjo8PegeJp12eamsNettCQjKjVw==
@@ -1745,14 +1740,6 @@ @@ -1745,14 +1740,6 @@
1745 dependencies: 1740 dependencies:
1746 "@types/node" "*" 1741 "@types/node" "*"
1747 1742
1748 -"@types/rollup-plugin-visualizer@^2.6.0":  
1749 - version "2.6.0"  
1750 - resolved "https://registry.npmjs.org/@types/rollup-plugin-visualizer/-/rollup-plugin-visualizer-2.6.0.tgz#e5953994362b8d89e5fef0ea0c00c6cd316eac2e"  
1751 - integrity sha512-mkKdL1Dst0w48gHMdS5dcVrJfRRFdxIVeesdUXUlxobQD6hqV5C6v0pUHgsDQrObWewRmHJdTNKNT6oe6Pejhw==  
1752 - dependencies:  
1753 - "@types/node" "*"  
1754 - rollup "^0.63.4"  
1755 -  
1756 "@types/sortablejs@^1.10.6": 1743 "@types/sortablejs@^1.10.6":
1757 version "1.10.6" 1744 version "1.10.6"
1758 resolved "https://registry.npmjs.org/@types/sortablejs/-/sortablejs-1.10.6.tgz#98725ae08f1dfe28b8da0fdf302c417f5ff043c0" 1745 resolved "https://registry.npmjs.org/@types/sortablejs/-/sortablejs-1.10.6.tgz#98725ae08f1dfe28b8da0fdf302c417f5ff043c0"
@@ -1797,21 +1784,7 @@ @@ -1797,21 +1784,7 @@
1797 dependencies: 1784 dependencies:
1798 "@types/yargs-parser" "*" 1785 "@types/yargs-parser" "*"
1799 1786
1800 -"@typescript-eslint/eslint-plugin@^4.16.1":  
1801 - version "4.18.0"  
1802 - resolved "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.18.0.tgz#50fbce93211b5b690895d20ebec6fe8db48af1f6"  
1803 - integrity sha512-Lzkc/2+7EoH7+NjIWLS2lVuKKqbEmJhtXe3rmfA8cyiKnZm3IfLf51irnBcmow8Q/AptVV0XBZmBJKuUJTe6cQ==  
1804 - dependencies:  
1805 - "@typescript-eslint/experimental-utils" "4.18.0"  
1806 - "@typescript-eslint/scope-manager" "4.18.0"  
1807 - debug "^4.1.1"  
1808 - functional-red-black-tree "^1.0.1"  
1809 - lodash "^4.17.15"  
1810 - regexpp "^3.0.0"  
1811 - semver "^7.3.2"  
1812 - tsutils "^3.17.1"  
1813 -  
1814 -"@typescript-eslint/eslint-plugin@^4.20.0": 1787 +"@typescript-eslint/eslint-plugin@^4.16.1", "@typescript-eslint/eslint-plugin@^4.20.0":
1815 version "4.20.0" 1788 version "4.20.0"
1816 resolved "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.20.0.tgz#9d8794bd99aad9153092ad13c96164e3082e9a92" 1789 resolved "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.20.0.tgz#9d8794bd99aad9153092ad13c96164e3082e9a92"
1817 integrity sha512-sw+3HO5aehYqn5w177z2D82ZQlqHCwcKSMboueo7oE4KU9QiC0SAgfS/D4z9xXvpTc8Bt41Raa9fBR8T2tIhoQ== 1790 integrity sha512-sw+3HO5aehYqn5w177z2D82ZQlqHCwcKSMboueo7oE4KU9QiC0SAgfS/D4z9xXvpTc8Bt41Raa9fBR8T2tIhoQ==
@@ -1825,19 +1798,7 @@ @@ -1825,19 +1798,7 @@
1825 semver "^7.3.2" 1798 semver "^7.3.2"
1826 tsutils "^3.17.1" 1799 tsutils "^3.17.1"
1827 1800
1828 -"@typescript-eslint/experimental-utils@4.18.0", "@typescript-eslint/experimental-utils@^4.0.1":  
1829 - version "4.18.0"  
1830 - resolved "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.18.0.tgz#ed6c955b940334132b17100d2917449b99a91314"  
1831 - integrity sha512-92h723Kblt9JcT2RRY3QS2xefFKar4ZQFVs3GityOKWQYgtajxt/tuXIzL7sVCUlM1hgreiV5gkGYyBpdOwO6A==  
1832 - dependencies:  
1833 - "@types/json-schema" "^7.0.3"  
1834 - "@typescript-eslint/scope-manager" "4.18.0"  
1835 - "@typescript-eslint/types" "4.18.0"  
1836 - "@typescript-eslint/typescript-estree" "4.18.0"  
1837 - eslint-scope "^5.0.0"  
1838 - eslint-utils "^2.0.0"  
1839 -  
1840 -"@typescript-eslint/experimental-utils@4.20.0": 1801 +"@typescript-eslint/experimental-utils@4.20.0", "@typescript-eslint/experimental-utils@^4.0.1":
1841 version "4.20.0" 1802 version "4.20.0"
1842 resolved "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.20.0.tgz#a8ab2d7b61924f99042b7d77372996d5f41dc44b" 1803 resolved "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.20.0.tgz#a8ab2d7b61924f99042b7d77372996d5f41dc44b"
1843 integrity sha512-sQNlf6rjLq2yB5lELl3gOE7OuoA/6IVXJUJ+Vs7emrQMva14CkOwyQwD7CW+TkmOJ4Q/YGmoDLmbfFrpGmbKng== 1804 integrity sha512-sQNlf6rjLq2yB5lELl3gOE7OuoA/6IVXJUJ+Vs7emrQMva14CkOwyQwD7CW+TkmOJ4Q/YGmoDLmbfFrpGmbKng==
@@ -1849,17 +1810,7 @@ @@ -1849,17 +1810,7 @@
1849 eslint-scope "^5.0.0" 1810 eslint-scope "^5.0.0"
1850 eslint-utils "^2.0.0" 1811 eslint-utils "^2.0.0"
1851 1812
1852 -"@typescript-eslint/parser@^4.16.1":  
1853 - version "4.18.0"  
1854 - resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.18.0.tgz#a211edb14a69fc5177054bec04c95b185b4dde21"  
1855 - integrity sha512-W3z5S0ZbecwX3PhJEAnq4mnjK5JJXvXUDBYIYGoweCyWyuvAKfGHvzmpUzgB5L4cRBb+cTu9U/ro66dx7dIimA==  
1856 - dependencies:  
1857 - "@typescript-eslint/scope-manager" "4.18.0"  
1858 - "@typescript-eslint/types" "4.18.0"  
1859 - "@typescript-eslint/typescript-estree" "4.18.0"  
1860 - debug "^4.1.1"  
1861 -  
1862 -"@typescript-eslint/parser@^4.20.0": 1813 +"@typescript-eslint/parser@^4.16.1", "@typescript-eslint/parser@^4.20.0":
1863 version "4.20.0" 1814 version "4.20.0"
1864 resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.20.0.tgz#8dd403c8b4258b99194972d9799e201b8d083bdd" 1815 resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.20.0.tgz#8dd403c8b4258b99194972d9799e201b8d083bdd"
1865 integrity sha512-m6vDtgL9EABdjMtKVw5rr6DdeMCH3OA1vFb0dAyuZSa3e5yw1YRzlwFnm9knma9Lz6b2GPvoNSa8vOXrqsaglA== 1816 integrity sha512-m6vDtgL9EABdjMtKVw5rr6DdeMCH3OA1vFb0dAyuZSa3e5yw1YRzlwFnm9knma9Lz6b2GPvoNSa8vOXrqsaglA==
@@ -1869,14 +1820,6 @@ @@ -1869,14 +1820,6 @@
1869 "@typescript-eslint/typescript-estree" "4.20.0" 1820 "@typescript-eslint/typescript-estree" "4.20.0"
1870 debug "^4.1.1" 1821 debug "^4.1.1"
1871 1822
1872 -"@typescript-eslint/scope-manager@4.18.0":  
1873 - version "4.18.0"  
1874 - resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.18.0.tgz#d75b55234c35d2ff6ac945758d6d9e53be84a427"  
1875 - integrity sha512-olX4yN6rvHR2eyFOcb6E4vmhDPsfdMyfQ3qR+oQNkAv8emKKlfxTWUXU5Mqxs2Fwe3Pf1BoPvrwZtwngxDzYzQ==  
1876 - dependencies:  
1877 - "@typescript-eslint/types" "4.18.0"  
1878 - "@typescript-eslint/visitor-keys" "4.18.0"  
1879 -  
1880 "@typescript-eslint/scope-manager@4.20.0": 1823 "@typescript-eslint/scope-manager@4.20.0":
1881 version "4.20.0" 1824 version "4.20.0"
1882 resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.20.0.tgz#953ecbf3b00845ece7be66246608be9d126d05ca" 1825 resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.20.0.tgz#953ecbf3b00845ece7be66246608be9d126d05ca"
@@ -1885,29 +1828,11 @@ @@ -1885,29 +1828,11 @@
1885 "@typescript-eslint/types" "4.20.0" 1828 "@typescript-eslint/types" "4.20.0"
1886 "@typescript-eslint/visitor-keys" "4.20.0" 1829 "@typescript-eslint/visitor-keys" "4.20.0"
1887 1830
1888 -"@typescript-eslint/types@4.18.0":  
1889 - version "4.18.0"  
1890 - resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.18.0.tgz#bebe323f81f2a7e2e320fac9415e60856267584a"  
1891 - integrity sha512-/BRociARpj5E+9yQ7cwCF/SNOWwXJ3qhjurMuK2hIFUbr9vTuDeu476Zpu+ptxY2kSxUHDGLLKy+qGq2sOg37A==  
1892 -  
1893 "@typescript-eslint/types@4.20.0": 1831 "@typescript-eslint/types@4.20.0":
1894 version "4.20.0" 1832 version "4.20.0"
1895 resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.20.0.tgz#c6cf5ef3c9b1c8f699a9bbdafb7a1da1ca781225" 1833 resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.20.0.tgz#c6cf5ef3c9b1c8f699a9bbdafb7a1da1ca781225"
1896 integrity sha512-cYY+1PIjei1nk49JAPnH1VEnu7OYdWRdJhYI5wiKOUMhLTG1qsx5cQxCUTuwWCmQoyriadz3Ni8HZmGSofeC+w== 1834 integrity sha512-cYY+1PIjei1nk49JAPnH1VEnu7OYdWRdJhYI5wiKOUMhLTG1qsx5cQxCUTuwWCmQoyriadz3Ni8HZmGSofeC+w==
1897 1835
1898 -"@typescript-eslint/typescript-estree@4.18.0":  
1899 - version "4.18.0"  
1900 - resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.18.0.tgz#756d3e61da8c16ab99185532c44872f4cd5538cb"  
1901 - integrity sha512-wt4xvF6vvJI7epz+rEqxmoNQ4ZADArGQO9gDU+cM0U5fdVv7N+IAuVoVAoZSOZxzGHBfvE3XQMLdy+scsqFfeg==  
1902 - dependencies:  
1903 - "@typescript-eslint/types" "4.18.0"  
1904 - "@typescript-eslint/visitor-keys" "4.18.0"  
1905 - debug "^4.1.1"  
1906 - globby "^11.0.1"  
1907 - is-glob "^4.0.1"  
1908 - semver "^7.3.2"  
1909 - tsutils "^3.17.1"  
1910 -  
1911 "@typescript-eslint/typescript-estree@4.20.0": 1836 "@typescript-eslint/typescript-estree@4.20.0":
1912 version "4.20.0" 1837 version "4.20.0"
1913 resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.20.0.tgz#8b3b08f85f18a8da5d88f65cb400f013e88ab7be" 1838 resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.20.0.tgz#8b3b08f85f18a8da5d88f65cb400f013e88ab7be"
@@ -1921,14 +1846,6 @@ @@ -1921,14 +1846,6 @@
1921 semver "^7.3.2" 1846 semver "^7.3.2"
1922 tsutils "^3.17.1" 1847 tsutils "^3.17.1"
1923 1848
1924 -"@typescript-eslint/visitor-keys@4.18.0":  
1925 - version "4.18.0"  
1926 - resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.18.0.tgz#4e6fe2a175ee33418318a029610845a81e2ff7b6"  
1927 - integrity sha512-Q9t90JCvfYaN0OfFUgaLqByOfz8yPeTAdotn/XYNm5q9eHax90gzdb+RJ6E9T5s97Kv/UHWKERTmqA0jTKAEHw==  
1928 - dependencies:  
1929 - "@typescript-eslint/types" "4.18.0"  
1930 - eslint-visitor-keys "^2.0.0"  
1931 -  
1932 "@typescript-eslint/visitor-keys@4.20.0": 1849 "@typescript-eslint/visitor-keys@4.20.0":
1933 version "4.20.0" 1850 version "4.20.0"
1934 resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.20.0.tgz#1e84db034da13f208325e6bfc995c3b75f7dbd62" 1851 resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.20.0.tgz#1e84db034da13f208325e6bfc995c3b75f7dbd62"
@@ -1948,10 +1865,10 @@ @@ -1948,10 +1865,10 @@
1948 regenerator-runtime "^0.13.7" 1865 regenerator-runtime "^0.13.7"
1949 systemjs "^6.8.3" 1866 systemjs "^6.8.3"
1950 1867
1951 -"@vitejs/plugin-vue-jsx@^1.1.2":  
1952 - version "1.1.2"  
1953 - resolved "https://registry.npmjs.org/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-1.1.2.tgz#d240d8d73c2f8e34f32ade6d06e709a959d1f2a1"  
1954 - integrity sha512-3m+0amZwkn0g/D3OqqTsG2qe82LvIaQYqAi3Klpx2vEdaBU5pgok5Qlp6eMGr6QQRDLa7HAKZbPCVV5yAPfOpg== 1868 +"@vitejs/plugin-vue-jsx@^1.1.3":
  1869 + version "1.1.3"
  1870 + resolved "https://registry.npmjs.org/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-1.1.3.tgz#426c68f8a367a603acb82fca6e2b12506ba9fc8e"
  1871 + integrity sha512-R9wsuNDEKTDG5oXJaFictrw9E5uokniGzi6tvyO5Od02tE4TnOPfgY2BeHKB4f4ldgiZRMhdUhNEsgjoWnct6A==
1955 dependencies: 1872 dependencies:
1956 "@babel/core" "^7.12.10" 1873 "@babel/core" "^7.12.10"
1957 "@babel/plugin-syntax-import-meta" "^7.10.4" 1874 "@babel/plugin-syntax-import-meta" "^7.10.4"
@@ -1995,17 +1912,6 @@ @@ -1995,17 +1912,6 @@
1995 estree-walker "^2.0.1" 1912 estree-walker "^2.0.1"
1996 source-map "^0.6.1" 1913 source-map "^0.6.1"
1997 1914
1998 -"@vue/compiler-core@3.0.7":  
1999 - version "3.0.7"  
2000 - resolved "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.0.7.tgz#421782a4c67cc3f2b7c30457ef446d74f8524f74"  
2001 - integrity sha512-JFohgBXoyUc3mdeI2WxlhjQZ5fakfemJkZHX8Gu/nFbEg3+lKVUZmNKWmmnp9aOzJQZKoj77LjmFxiP+P+7lMQ==  
2002 - dependencies:  
2003 - "@babel/parser" "^7.12.0"  
2004 - "@babel/types" "^7.12.0"  
2005 - "@vue/shared" "3.0.7"  
2006 - estree-walker "^2.0.1"  
2007 - source-map "^0.6.1"  
2008 -  
2009 "@vue/compiler-dom@3.0.10": 1915 "@vue/compiler-dom@3.0.10":
2010 version "3.0.10" 1916 version "3.0.10"
2011 resolved "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.0.10.tgz#59d3597498e7d4b0b92f3886a823f99d5b08f1fe" 1917 resolved "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.0.10.tgz#59d3597498e7d4b0b92f3886a823f99d5b08f1fe"
@@ -2014,14 +1920,6 @@ @@ -2014,14 +1920,6 @@
2014 "@vue/compiler-core" "3.0.10" 1920 "@vue/compiler-core" "3.0.10"
2015 "@vue/shared" "3.0.10" 1921 "@vue/shared" "3.0.10"
2016 1922
2017 -"@vue/compiler-dom@3.0.7":  
2018 - version "3.0.7"  
2019 - resolved "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.0.7.tgz#54d2e12fb9a7aff53abd19dac2c2679533f0c919"  
2020 - integrity sha512-VnIH9EbWQm/Tkcp+8dCaNVsVvhm/vxCrIKWRkXY9215hTqOqQOvejT8IMjd2kc++nIsYMsdQk6H9qqBvoLe/Cw==  
2021 - dependencies:  
2022 - "@vue/compiler-core" "3.0.7"  
2023 - "@vue/shared" "3.0.7"  
2024 -  
2025 "@vue/compiler-sfc@3.0.10": 1923 "@vue/compiler-sfc@3.0.10":
2026 version "3.0.10" 1924 version "3.0.10"
2027 resolved "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.0.10.tgz#de6bc9be7f5ab1d944048a9be04c72c3571d4321" 1925 resolved "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.0.10.tgz#de6bc9be7f5ab1d944048a9be04c72c3571d4321"
@@ -2064,13 +1962,6 @@ @@ -2064,13 +1962,6 @@
2064 dependencies: 1962 dependencies:
2065 "@vue/shared" "3.0.10" 1963 "@vue/shared" "3.0.10"
2066 1964
2067 -"@vue/reactivity@3.0.7":  
2068 - version "3.0.7"  
2069 - resolved "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.0.7.tgz#e6ccc7bef7fc10b0972e4d974bad71679d3b26ad"  
2070 - integrity sha512-FotWcNNaKhqpFZrdgsUOZ1enlJ5lhTt01CNTtLSyK7jYFgZBTuw8vKsEutZKDYZ1XKotOfoeO8N3pZQqmM6Etw==  
2071 - dependencies:  
2072 - "@vue/shared" "3.0.7"  
2073 -  
2074 "@vue/runtime-core@3.0.10": 1965 "@vue/runtime-core@3.0.10":
2075 version "3.0.10" 1966 version "3.0.10"
2076 resolved "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.0.10.tgz#cb8730c0ec86ea5c1cfa701facc0a97bf59b15a2" 1967 resolved "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.0.10.tgz#cb8730c0ec86ea5c1cfa701facc0a97bf59b15a2"
@@ -2079,14 +1970,6 @@ @@ -2079,14 +1970,6 @@
2079 "@vue/reactivity" "3.0.10" 1970 "@vue/reactivity" "3.0.10"
2080 "@vue/shared" "3.0.10" 1971 "@vue/shared" "3.0.10"
2081 1972
2082 -"@vue/runtime-core@3.0.7":  
2083 - version "3.0.7"  
2084 - resolved "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.0.7.tgz#d44c0b0a57d7e392912a87362a4430ccf446ecea"  
2085 - integrity sha512-DBAZAwVvdmMXuyd6/9qqj/kYr/GaLTmn1L2/QLxLwP+UfhIboiTSBc/tUUb8MRk7Bb98GzNeAWkkT6AfooS3dQ==  
2086 - dependencies:  
2087 - "@vue/reactivity" "3.0.7"  
2088 - "@vue/shared" "3.0.7"  
2089 -  
2090 "@vue/runtime-dom@3.0.10": 1973 "@vue/runtime-dom@3.0.10":
2091 version "3.0.10" 1974 version "3.0.10"
2092 resolved "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.0.10.tgz#80c6ee28caeabf74f31357d2c64d177945bd8a5f" 1975 resolved "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.0.10.tgz#80c6ee28caeabf74f31357d2c64d177945bd8a5f"
@@ -2096,25 +1979,11 @@ @@ -2096,25 +1979,11 @@
2096 "@vue/shared" "3.0.10" 1979 "@vue/shared" "3.0.10"
2097 csstype "^2.6.8" 1980 csstype "^2.6.8"
2098 1981
2099 -"@vue/runtime-dom@3.0.7":  
2100 - version "3.0.7"  
2101 - resolved "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.0.7.tgz#b70668d729020bc4ad608c20367223f259576ba6"  
2102 - integrity sha512-Oij4ruOtnpQpCj+/Q3JPzgpTJ1Q7+N67pA53A8KVITEtxfvKL46NN6dhAZ5NGqwX6RWZpYqWQNewITeF0pHr8g==  
2103 - dependencies:  
2104 - "@vue/runtime-core" "3.0.7"  
2105 - "@vue/shared" "3.0.7"  
2106 - csstype "^2.6.8"  
2107 -  
2108 "@vue/shared@3.0.10": 1982 "@vue/shared@3.0.10":
2109 version "3.0.10" 1983 version "3.0.10"
2110 resolved "https://registry.npmjs.org/@vue/shared/-/shared-3.0.10.tgz#5476d5615d01bf339c65c2e804f5909bbc27844a" 1984 resolved "https://registry.npmjs.org/@vue/shared/-/shared-3.0.10.tgz#5476d5615d01bf339c65c2e804f5909bbc27844a"
2111 integrity sha512-p8GJ+bGpEGiEHICwcCH/EtJnkZQllrOfm1J2J+Ep0ydMte25bPnArgrY/h2Tn1LKqqR3LXyQlOSYY6gJgiW2LQ== 1985 integrity sha512-p8GJ+bGpEGiEHICwcCH/EtJnkZQllrOfm1J2J+Ep0ydMte25bPnArgrY/h2Tn1LKqqR3LXyQlOSYY6gJgiW2LQ==
2112 1986
2113 -"@vue/shared@3.0.7":  
2114 - version "3.0.7"  
2115 - resolved "https://registry.npmjs.org/@vue/shared/-/shared-3.0.7.tgz#96d52988efc07444c108c7c6803ba7cc93e40045"  
2116 - integrity sha512-dn5FyfSc4ky424jH4FntiHno7Ss5yLkqKNmM/NXwANRnlkmqu74pnGetexDFVG5phMk9/FhwovUZCWGxsotVKg==  
2117 -  
2118 "@vueuse/core@^4.6.3": 1987 "@vueuse/core@^4.6.3":
2119 version "4.6.3" 1988 version "4.6.3"
2120 resolved "https://registry.npmjs.org/@vueuse/core/-/core-4.6.3.tgz#9684b602cb0d08583ee9151c52760c4db1707da2" 1989 resolved "https://registry.npmjs.org/@vueuse/core/-/core-4.6.3.tgz#9684b602cb0d08583ee9151c52760c4db1707da2"
@@ -2130,10 +1999,10 @@ @@ -2130,10 +1999,10 @@
2130 dependencies: 1999 dependencies:
2131 vue-demi latest 2000 vue-demi latest
2132 2001
2133 -"@windicss/plugin-utils@0.10.4":  
2134 - version "0.10.4"  
2135 - resolved "https://registry.npmjs.org/@windicss/plugin-utils/-/plugin-utils-0.10.4.tgz#ed9163b09e030f7358cc4742b1f2b6c92d084d5d"  
2136 - integrity sha512-jQu69qzA56Lv18OK8U4mUTDV17st4EdPawQuaRG2VNK+ZEQWYsMNnqGxhzDTl/NhWTGCcTb3D6mlFPNo0QDOFg== 2002 +"@windicss/plugin-utils@0.11.4":
  2003 + version "0.11.4"
  2004 + resolved "https://registry.npmjs.org/@windicss/plugin-utils/-/plugin-utils-0.11.4.tgz#0c60515fccec2149cd0286e9b433ec3a6feb425b"
  2005 + integrity sha512-WYdz/0hdX5rgdKR+72dWOyPX1IevVGH0qPZvRi5MBgEgB1MDSy2K2lah053KzyXCYgprGpmtrPjnt0ENejsOPg==
2137 dependencies: 2006 dependencies:
2138 debug "^4.3.2" 2007 debug "^4.3.2"
2139 fast-glob "^3.2.5" 2008 fast-glob "^3.2.5"
@@ -2141,7 +2010,7 @@ @@ -2141,7 +2010,7 @@
2141 micromatch "^4.0.2" 2010 micromatch "^4.0.2"
2142 pirates "^4.0.1" 2011 pirates "^4.0.1"
2143 sucrase "^3.17.1" 2012 sucrase "^3.17.1"
2144 - windicss "^2.5.7" 2013 + windicss "^2.5.9"
2145 2014
2146 "@zxcvbn-ts/core@^0.3.0": 2015 "@zxcvbn-ts/core@^0.3.0":
2147 version "0.3.0" 2016 version "0.3.0"
@@ -3823,14 +3692,7 @@ debug@^3.1.1, debug@^3.2.6: @@ -3823,14 +3692,7 @@ debug@^3.1.1, debug@^3.2.6:
3823 dependencies: 3692 dependencies:
3824 ms "^2.1.1" 3693 ms "^2.1.1"
3825 3694
3826 -debug@^4.0.0, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.2.0, debug@^4.3.1:  
3827 - version "4.3.1"  
3828 - resolved "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee"  
3829 - integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==  
3830 - dependencies:  
3831 - ms "2.1.2"  
3832 -  
3833 -debug@^4.3.2: 3695 +debug@^4.0.0, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.2.0, debug@^4.3.1, debug@^4.3.2:
3834 version "4.3.2" 3696 version "4.3.2"
3835 resolved "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b" 3697 resolved "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b"
3836 integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw== 3698 integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==
@@ -4313,12 +4175,7 @@ esbuild@^0.11.2: @@ -4313,12 +4175,7 @@ esbuild@^0.11.2:
4313 resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.11.2.tgz#3b995e107f2054d9090402b98a3b79ceffd05eb6" 4175 resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.11.2.tgz#3b995e107f2054d9090402b98a3b79ceffd05eb6"
4314 integrity sha512-8d5FCQrR+juXC2u9zjTQ3+IYiuFuaWyKYwmApFJLquTrYNbk36H/+MkRQeTuOJg7IjUchRX2Ulwo1zRYXZ1pUg== 4176 integrity sha512-8d5FCQrR+juXC2u9zjTQ3+IYiuFuaWyKYwmApFJLquTrYNbk36H/+MkRQeTuOJg7IjUchRX2Ulwo1zRYXZ1pUg==
4315 4177
4316 -esbuild@^0.9.2:  
4317 - version "0.9.4"  
4318 - resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.9.4.tgz#4480ffc4c1e5d5bb25958f889b5de0279bfb2d6f"  
4319 - integrity sha512-bF6laCiYE5+iAfZsX+v6Lwvi5QbvKN3tThxDIR2WLyLYzTzNn0ijdpqkvTVsafmRZjic2Nq1nkSf5RSWySDTjA==  
4320 -  
4321 -esbuild@^0.9.3: 4178 +esbuild@^0.9.2, esbuild@^0.9.3:
4322 version "0.9.7" 4179 version "0.9.7"
4323 resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.9.7.tgz#ea0d639cbe4b88ec25fbed4d6ff00c8d788ef70b" 4180 resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.9.7.tgz#ea0d639cbe4b88ec25fbed4d6ff00c8d788ef70b"
4324 integrity sha512-VtUf6aQ89VTmMLKrWHYG50uByMF4JQlVysb8dmg6cOgW8JnFCipmz7p+HNBl+RR3LLCuBxFGVauAe2wfnF9bLg== 4181 integrity sha512-VtUf6aQ89VTmMLKrWHYG50uByMF4JQlVysb8dmg6cOgW8JnFCipmz7p+HNBl+RR3LLCuBxFGVauAe2wfnF9bLg==
@@ -4414,50 +4271,7 @@ eslint-visitor-keys@^2.0.0: @@ -4414,50 +4271,7 @@ eslint-visitor-keys@^2.0.0:
4414 resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz#21fdc8fbcd9c795cc0321f0563702095751511a8" 4271 resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz#21fdc8fbcd9c795cc0321f0563702095751511a8"
4415 integrity sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ== 4272 integrity sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==
4416 4273
4417 -eslint@^7.21.0:  
4418 - version "7.22.0"  
4419 - resolved "https://registry.npmjs.org/eslint/-/eslint-7.22.0.tgz#07ecc61052fec63661a2cab6bd507127c07adc6f"  
4420 - integrity sha512-3VawOtjSJUQiiqac8MQc+w457iGLfuNGLFn8JmF051tTKbh5/x/0vlcEj8OgDCaw7Ysa2Jn8paGshV7x2abKXg==  
4421 - dependencies:  
4422 - "@babel/code-frame" "7.12.11"  
4423 - "@eslint/eslintrc" "^0.4.0"  
4424 - ajv "^6.10.0"  
4425 - chalk "^4.0.0"  
4426 - cross-spawn "^7.0.2"  
4427 - debug "^4.0.1"  
4428 - doctrine "^3.0.0"  
4429 - enquirer "^2.3.5"  
4430 - eslint-scope "^5.1.1"  
4431 - eslint-utils "^2.1.0"  
4432 - eslint-visitor-keys "^2.0.0"  
4433 - espree "^7.3.1"  
4434 - esquery "^1.4.0"  
4435 - esutils "^2.0.2"  
4436 - file-entry-cache "^6.0.1"  
4437 - functional-red-black-tree "^1.0.1"  
4438 - glob-parent "^5.0.0"  
4439 - globals "^13.6.0"  
4440 - ignore "^4.0.6"  
4441 - import-fresh "^3.0.0"  
4442 - imurmurhash "^0.1.4"  
4443 - is-glob "^4.0.0"  
4444 - js-yaml "^3.13.1"  
4445 - json-stable-stringify-without-jsonify "^1.0.1"  
4446 - levn "^0.4.1"  
4447 - lodash "^4.17.21"  
4448 - minimatch "^3.0.4"  
4449 - natural-compare "^1.4.0"  
4450 - optionator "^0.9.1"  
4451 - progress "^2.0.0"  
4452 - regexpp "^3.1.0"  
4453 - semver "^7.2.1"  
4454 - strip-ansi "^6.0.0"  
4455 - strip-json-comments "^3.1.0"  
4456 - table "^6.0.4"  
4457 - text-table "^0.2.0"  
4458 - v8-compile-cache "^2.0.3"  
4459 -  
4460 -eslint@^7.23.0: 4274 +eslint@^7.21.0, eslint@^7.23.0:
4461 version "7.23.0" 4275 version "7.23.0"
4462 resolved "https://registry.npmjs.org/eslint/-/eslint-7.23.0.tgz#8d029d252f6e8cf45894b4bee08f5493f8e94325" 4276 resolved "https://registry.npmjs.org/eslint/-/eslint-7.23.0.tgz#8d029d252f6e8cf45894b4bee08f5493f8e94325"
4463 integrity sha512-kqvNVbdkjzpFy0XOszNwjkKzZ+6TcwCQ/h+ozlcIWwaimBBuhlQ4nN6kbiM2L+OjDcznkTJxzYfRFH92sx4a0Q== 4277 integrity sha512-kqvNVbdkjzpFy0XOszNwjkKzZ+6TcwCQ/h+ozlcIWwaimBBuhlQ4nN6kbiM2L+OjDcznkTJxzYfRFH92sx4a0Q==
@@ -7656,7 +7470,7 @@ mz@^2.7.0: @@ -7656,7 +7470,7 @@ mz@^2.7.0:
7656 object-assign "^4.0.1" 7470 object-assign "^4.0.1"
7657 thenify-all "^1.0.0" 7471 thenify-all "^1.0.0"
7658 7472
7659 -nanoid@^3.1.20, nanoid@^3.1.22: 7473 +nanoid@^3.1.22:
7660 version "3.1.22" 7474 version "3.1.22"
7661 resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.1.22.tgz#b35f8fb7d151990a8aebd5aa5015c03cf726f844" 7475 resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.1.22.tgz#b35f8fb7d151990a8aebd5aa5015c03cf726f844"
7662 integrity sha512-/2ZUaJX2ANuLtTvqTlgqBQNJoQO398KyJgZloL0PZkC0dpysjncRUPsFe3DUPzz/y3h+u7C46np8RMuvF3jsSQ== 7476 integrity sha512-/2ZUaJX2ANuLtTvqTlgqBQNJoQO398KyJgZloL0PZkC0dpysjncRUPsFe3DUPzz/y3h+u7C46np8RMuvF3jsSQ==
@@ -8557,16 +8371,7 @@ postcss@^7.0.0, postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.2, postcss@^7.0.2 @@ -8557,16 +8371,7 @@ postcss@^7.0.0, postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.2, postcss@^7.0.2
8557 source-map "^0.6.1" 8371 source-map "^0.6.1"
8558 supports-color "^6.1.0" 8372 supports-color "^6.1.0"
8559 8373
8560 -postcss@^8.1.10, postcss@^8.2.1:  
8561 - version "8.2.8"  
8562 - resolved "https://registry.npmjs.org/postcss/-/postcss-8.2.8.tgz#0b90f9382efda424c4f0f69a2ead6f6830d08ece"  
8563 - integrity sha512-1F0Xb2T21xET7oQV9eKuctbM9S7BC0fetoHCc4H13z0PT6haiRLP4T0ZY4XWh7iLP0usgqykT6p9B2RtOf4FPw==  
8564 - dependencies:  
8565 - colorette "^1.2.2"  
8566 - nanoid "^3.1.20"  
8567 - source-map "^0.6.1"  
8568 -  
8569 -postcss@^8.2.9: 8374 +postcss@^8.1.10, postcss@^8.2.1, postcss@^8.2.9:
8570 version "8.2.9" 8375 version "8.2.9"
8571 resolved "https://registry.npmjs.org/postcss/-/postcss-8.2.9.tgz#fd95ff37b5cee55c409b3fdd237296ab4096fba3" 8376 resolved "https://registry.npmjs.org/postcss/-/postcss-8.2.9.tgz#fd95ff37b5cee55c409b3fdd237296ab4096fba3"
8572 integrity sha512-b+TmuIL4jGtCHtoLi+G/PisuIl9avxs8IZMSmlABRwNz5RLUUACrC+ws81dcomz1nRezm5YPdXiMEzBEKgYn+Q== 8377 integrity sha512-b+TmuIL4jGtCHtoLi+G/PisuIl9avxs8IZMSmlABRwNz5RLUUACrC+ws81dcomz1nRezm5YPdXiMEzBEKgYn+Q==
@@ -9200,28 +9005,20 @@ rollup-plugin-terser@^7.0.0: @@ -9200,28 +9005,20 @@ rollup-plugin-terser@^7.0.0:
9200 serialize-javascript "^4.0.0" 9005 serialize-javascript "^4.0.0"
9201 terser "^5.0.0" 9006 terser "^5.0.0"
9202 9007
9203 -rollup-plugin-visualizer@4.2.2:  
9204 - version "4.2.2"  
9205 - resolved "https://registry.npmjs.org/rollup-plugin-visualizer/-/rollup-plugin-visualizer-4.2.2.tgz#edeb8b3fc6f49b3c95f6cc668f4eba57c6112099"  
9206 - integrity sha512-10/TsugsaQL5rdynl0lrklBngTtkRBESZdxUJy+3fN+xKqNdg5cr7JQU1OoPx4p5mhQ+nspa6EvX3qc8SsBvnA== 9008 +rollup-plugin-visualizer@5.0.4:
  9009 + version "5.0.4"
  9010 + resolved "https://registry.npmjs.org/rollup-plugin-visualizer/-/rollup-plugin-visualizer-5.0.4.tgz#fd4c104e310033412aa8d99c811e73a7710a2c11"
  9011 + integrity sha512-K/pFyP70k5ZcSIMH8kSWQOgT2kY3QaoMSPOG4onE8p2FBcUM/klCb7uIZMiocrl8DchCpq+mvDHOlLCx/R+Edg==
9207 dependencies: 9012 dependencies:
9208 nanoid "^3.1.22" 9013 nanoid "^3.1.22"
9209 open "^7.4.2" 9014 open "^7.4.2"
9210 source-map "^0.7.3" 9015 source-map "^0.7.3"
9211 yargs "^16.2.0" 9016 yargs "^16.2.0"
9212 9017
9213 -rollup@^0.63.4:  
9214 - version "0.63.5"  
9215 - resolved "https://registry.npmjs.org/rollup/-/rollup-0.63.5.tgz#5543eecac9a1b83b7e1be598b5be84c9c0a089db"  
9216 - integrity sha512-dFf8LpUNzIj3oE0vCvobX6rqOzHzLBoblyFp+3znPbjiSmSvOoK2kMKx+Fv9jYduG1rvcCfCveSgEaQHjWRF6g==  
9217 - dependencies:  
9218 - "@types/estree" "0.0.39"  
9219 - "@types/node" "*"  
9220 -  
9221 -rollup@^2.25.0, rollup@^2.38.5:  
9222 - version "2.41.5"  
9223 - resolved "https://registry.npmjs.org/rollup/-/rollup-2.41.5.tgz#e79cef8cc5c121612528f590319639b1f32da2d7"  
9224 - integrity sha512-uG+WNNxhOYyeuO7oRt98GA2CNVRgQ67zca75UQVMPzMrLG9FUKzTCgvYVWhtB18TNbV7Uqxo97h+wErAnpFNJw== 9018 +rollup@^2.25.0, rollup@^2.38.5, rollup@^2.44.0:
  9019 + version "2.44.0"
  9020 + resolved "https://registry.npmjs.org/rollup/-/rollup-2.44.0.tgz#8da324d1c4fd12beef9ae6e12f4068265b6d95eb"
  9021 + integrity sha512-rGSF4pLwvuaH/x4nAS+zP6UNn5YUDWf/TeEU5IoXSZKBbKRNTCI3qMnYXKZgrC0D2KzS2baiOZt1OlqhMu5rnQ==
9225 optionalDependencies: 9022 optionalDependencies:
9226 fsevents "~2.3.1" 9023 fsevents "~2.3.1"
9227 9024
@@ -10881,10 +10678,10 @@ vite-plugin-imagemin@^0.2.9: @@ -10881,10 +10678,10 @@ vite-plugin-imagemin@^0.2.9:
10881 imagemin-svgo "^8.0.0" 10678 imagemin-svgo "^8.0.0"
10882 imagemin-webp "^6.0.0" 10679 imagemin-webp "^6.0.0"
10883 10680
10884 -vite-plugin-mock@^2.4.1:  
10885 - version "2.4.1"  
10886 - resolved "https://registry.npmjs.org/vite-plugin-mock/-/vite-plugin-mock-2.4.1.tgz#f1095068a3ab9c7ce07634ce392c7bdb0e196a45"  
10887 - integrity sha512-HKHLwzje9ubo7/nKuGTQkvBnbHMj6ReAYxTXM/6QTp2p4oyE4kLNSMinJu9YvR7xmlcxlfWEpz5qMhY7yY+Ctg== 10681 +vite-plugin-mock@^2.4.2:
  10682 + version "2.4.2"
  10683 + resolved "https://registry.npmjs.org/vite-plugin-mock/-/vite-plugin-mock-2.4.2.tgz#1777627debbea0b34a9574222614a30574fbd8c3"
  10684 + integrity sha512-dug7ytkGl1txtG+qHXQkCSjUOGf01As9mVmRIek64SSJqBpH/Vwj71VTH3UxErDziWclUcQGEoRJWAv20MEeAg==
10888 dependencies: 10685 dependencies:
10889 "@rollup/plugin-node-resolve" "^11.2.1" 10686 "@rollup/plugin-node-resolve" "^11.2.1"
10890 "@types/mockjs" "^1.0.3" 10687 "@types/mockjs" "^1.0.3"
@@ -10969,15 +10766,15 @@ vite-plugin-theme@^0.5.0: @@ -10969,15 +10766,15 @@ vite-plugin-theme@^0.5.0:
10969 tinycolor2 "^1.4.2" 10766 tinycolor2 "^1.4.2"
10970 ts-jest "^26.5.3" 10767 ts-jest "^26.5.3"
10971 10768
10972 -vite-plugin-windicss@0.10.4:  
10973 - version "0.10.4"  
10974 - resolved "https://registry.npmjs.org/vite-plugin-windicss/-/vite-plugin-windicss-0.10.4.tgz#e93577111ea0a55befbe4e2aa2e596f55f6b74b2"  
10975 - integrity sha512-P7alH2dGGw3OTgjs9yZG2w0i+o1HKD8PChwhm2ftP+lLCe1xDL3LReheuRil9p2xPYzrVouER2YTbIdLUEThrQ== 10769 +vite-plugin-windicss@0.11.4:
  10770 + version "0.11.4"
  10771 + resolved "https://registry.npmjs.org/vite-plugin-windicss/-/vite-plugin-windicss-0.11.4.tgz#cde87eba7be66ef1e29f14f2896a995d9430995e"
  10772 + integrity sha512-xGRaeXN6bR6QQceGcoIxfJCPvy+wCWR0ymHdjrYQr19LInEkL0lzvJwQkj51t5T8+56Xc7XsvSMb6HbJ1RERqA==
10976 dependencies: 10773 dependencies:
10977 - "@windicss/plugin-utils" "0.10.4" 10774 + "@windicss/plugin-utils" "0.11.4"
10978 chalk "^4.1.0" 10775 chalk "^4.1.0"
10979 debug "^4.3.2" 10776 debug "^4.3.2"
10980 - windicss "^2.5.7" 10777 + windicss "^2.5.9"
10981 10778
10982 vite@2.1.5: 10779 vite@2.1.5:
10983 version "2.1.5" 10780 version "2.1.5"
@@ -11029,7 +10826,7 @@ vue-types@^3.0.0, vue-types@^3.0.2: @@ -11029,7 +10826,7 @@ vue-types@^3.0.0, vue-types@^3.0.2:
11029 dependencies: 10826 dependencies:
11030 is-plain-object "3.0.1" 10827 is-plain-object "3.0.1"
11031 10828
11032 -vue@3.0.10: 10829 +vue@3.0.10, vue@^3.0.0:
11033 version "3.0.10" 10830 version "3.0.10"
11034 resolved "https://registry.npmjs.org/vue/-/vue-3.0.10.tgz#b5d2801c6ac0e756c850ad7a8f9a78cbccbad02a" 10831 resolved "https://registry.npmjs.org/vue/-/vue-3.0.10.tgz#b5d2801c6ac0e756c850ad7a8f9a78cbccbad02a"
11035 integrity sha512-6arZ722uqIArSNUU94aqx0Pq0IMHFqYZuJ+U+q9HGdZZu11VFpyFP/L/hakijGFKp56Jr0yxJdWbDiJGWPxwww== 10832 integrity sha512-6arZ722uqIArSNUU94aqx0Pq0IMHFqYZuJ+U+q9HGdZZu11VFpyFP/L/hakijGFKp56Jr0yxJdWbDiJGWPxwww==
@@ -11038,15 +10835,6 @@ vue@3.0.10: @@ -11038,15 +10835,6 @@ vue@3.0.10:
11038 "@vue/runtime-dom" "3.0.10" 10835 "@vue/runtime-dom" "3.0.10"
11039 "@vue/shared" "3.0.10" 10836 "@vue/shared" "3.0.10"
11040 10837
11041 -vue@^3.0.0:  
11042 - version "3.0.7"  
11043 - resolved "https://registry.npmjs.org/vue/-/vue-3.0.7.tgz#8bcff51f8be570f9e4ce8cc5f52e2ab0fe3c74a1"  
11044 - integrity sha512-8h4TikD+JabbMK9aRlBO4laG0AtNHRPHynxYgWZ9sq1YUPfzynd9Jeeb27XNyZytC7aCQRX9xe1+TQJuc181Tw==  
11045 - dependencies:  
11046 - "@vue/compiler-dom" "3.0.7"  
11047 - "@vue/runtime-dom" "3.0.7"  
11048 - "@vue/shared" "3.0.7"  
11049 -  
11050 vuex-module-decorators@^1.0.1: 10838 vuex-module-decorators@^1.0.1:
11051 version "1.0.1" 10839 version "1.0.1"
11052 resolved "https://registry.npmjs.org/vuex-module-decorators/-/vuex-module-decorators-1.0.1.tgz#d34dafb5428a3636f1c26d3d014c15fc9659ccd0" 10840 resolved "https://registry.npmjs.org/vuex-module-decorators/-/vuex-module-decorators-1.0.1.tgz#d34dafb5428a3636f1c26d3d014c15fc9659ccd0"
@@ -11160,10 +10948,10 @@ which@^2.0.1, which@^2.0.2: @@ -11160,10 +10948,10 @@ which@^2.0.1, which@^2.0.2:
11160 dependencies: 10948 dependencies:
11161 isexe "^2.0.0" 10949 isexe "^2.0.0"
11162 10950
11163 -windicss@^2.5.7:  
11164 - version "2.5.8"  
11165 - resolved "https://registry.npmjs.org/windicss/-/windicss-2.5.8.tgz#254980044de3031276062b90cfce53c13ee489bf"  
11166 - integrity sha512-zHkozdIqv1YTIGHBOHeFGsuZVTN5yAMz6FW5Bp8im9JZxSRZLOLKdJB0K75SL13iLHKXHrC1ukwJjjL8CohrUw== 10951 +windicss@^2.5.9:
  10952 + version "2.5.9"
  10953 + resolved "https://registry.npmjs.org/windicss/-/windicss-2.5.9.tgz#167811594e1d791839c58f2a97762f114499b1ca"
  10954 + integrity sha512-nldl2eVxK2qLwYLhh1/+fnvT8lhxckQp8cK+Gd8nPAjJOnuvWogNiQZ/9h1jTMAkYWxWUrxT5mhP3F0Klxa99Q==
11167 10955
11168 wmf@~1.0.1: 10956 wmf@~1.0.1:
11169 version "1.0.2" 10957 version "1.0.2"