Commit ee4829c15d7c8e978eb616edb7f1e61c258d469b
1 parent
c030567b
fix(server): grammatical errors
Showing
9 changed files
with
67 additions
and
276 deletions
.husky/lintstagedrc.js
... | ... | @@ -3,6 +3,6 @@ module.exports = { |
3 | 3 | '{!(package)*.json,*.code-snippets,.!(browserslist)*rc}': ['prettier --write--parser json'], |
4 | 4 | 'package.json': ['prettier --write'], |
5 | 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 | 7 | '*.md': ['prettier --write'], |
8 | 8 | }; | ... | ... |
build/vite/plugin/html.ts
... | ... | @@ -12,7 +12,7 @@ import { GLOB_CONFIG_FILE_NAME } from '../../constant'; |
12 | 12 | export function configHtmlPlugin(env: ViteEnv, isBuild: boolean) { |
13 | 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 | 17 | const getAppConfigSrc = () => { |
18 | 18 | return `${path || '/'}${GLOB_CONFIG_FILE_NAME}?v=${pkg.version}-${new Date().getTime()}`; | ... | ... |
build/vite/plugin/visualizer.ts
package.json
... | ... | @@ -70,13 +70,12 @@ |
70 | 70 | "@types/nprogress": "^0.2.0", |
71 | 71 | "@types/qrcode": "^1.4.0", |
72 | 72 | "@types/qs": "^6.9.6", |
73 | - "@types/rollup-plugin-visualizer": "^2.6.0", | |
74 | 73 | "@types/sortablejs": "^1.10.6", |
75 | 74 | "@typescript-eslint/eslint-plugin": "^4.20.0", |
76 | 75 | "@typescript-eslint/parser": "^4.20.0", |
77 | 76 | "@vitejs/plugin-legacy": "^1.3.2", |
78 | 77 | "@vitejs/plugin-vue": "^1.2.1", |
79 | - "@vitejs/plugin-vue-jsx": "^1.1.2", | |
78 | + "@vitejs/plugin-vue-jsx": "^1.1.3", | |
80 | 79 | "@vue/compiler-sfc": "3.0.10", |
81 | 80 | "autoprefixer": "^10.2.5", |
82 | 81 | "commitizen": "^4.2.3", |
... | ... | @@ -100,7 +99,7 @@ |
100 | 99 | "prettier": "^2.2.1", |
101 | 100 | "pretty-quick": "^3.1.0", |
102 | 101 | "rimraf": "^3.0.2", |
103 | - "rollup-plugin-visualizer": "4.2.2", | |
102 | + "rollup-plugin-visualizer": "5.0.4", | |
104 | 103 | "stylelint": "^13.12.0", |
105 | 104 | "stylelint-config-prettier": "^8.0.2", |
106 | 105 | "stylelint-config-standard": "^21.0.0", |
... | ... | @@ -111,18 +110,19 @@ |
111 | 110 | "vite-plugin-compression": "^0.2.3", |
112 | 111 | "vite-plugin-html": "^2.0.3", |
113 | 112 | "vite-plugin-imagemin": "^0.2.9", |
114 | - "vite-plugin-mock": "^2.4.1", | |
113 | + "vite-plugin-mock": "^2.4.2", | |
115 | 114 | "vite-plugin-purge-icons": "^0.7.0", |
116 | 115 | "vite-plugin-pwa": "^0.6.4", |
117 | 116 | "vite-plugin-style-import": "^0.9.1", |
118 | 117 | "vite-plugin-svg-icons": "^0.4.0", |
119 | 118 | "vite-plugin-theme": "^0.5.0", |
120 | - "vite-plugin-windicss": "0.10.4", | |
119 | + "vite-plugin-windicss": "0.11.4", | |
121 | 120 | "vue-eslint-parser": "^7.6.0" |
122 | 121 | }, |
123 | 122 | "resolutions": { |
124 | 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 | 127 | "repository": { |
128 | 128 | "type": "git", | ... | ... |
src/main.ts
1 | 1 | import '/@/design/index.less'; |
2 | 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 | 4 | import { createApp } from 'vue'; |
13 | 5 | import App from './App.vue'; |
14 | 6 | |
... | ... | @@ -25,6 +17,14 @@ import '/@/router/guard'; |
25 | 17 | // Register icon Sprite |
26 | 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 | 28 | (async () => { |
29 | 29 | const app = createApp(App); |
30 | 30 | // Register global components | ... | ... |
src/views/dashboard/analysis/components/GrowCard.vue
src/views/sys/about/index.vue
... | ... | @@ -9,9 +9,9 @@ |
9 | 9 | </span> |
10 | 10 | </div> |
11 | 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 | 15 | </PageWrapper> |
16 | 16 | </template> |
17 | 17 | <script lang="ts"> |
... | ... | @@ -32,8 +32,10 @@ |
32 | 32 | |
33 | 33 | const schema: DescItem[] = []; |
34 | 34 | const devSchema: DescItem[] = []; |
35 | + | |
35 | 36 | const commonTagRender = (color: string) => (curVal) => h(Tag, { color }, () => curVal); |
36 | 37 | const commonLinkRender = (text: string) => (href) => h('a', { href, target: '_blank' }, text); |
38 | + | |
37 | 39 | const infoSchema: DescItem[] = [ |
38 | 40 | { |
39 | 41 | label: '็ๆฌ', |
... | ... | @@ -77,18 +79,21 @@ |
77 | 79 | Object.keys(devDependencies).forEach((key) => { |
78 | 80 | devSchema.push({ field: key, label: key }); |
79 | 81 | }); |
82 | + | |
80 | 83 | const [register] = useDescription({ |
81 | 84 | title: '็ไบง็ฏๅขไพ่ต', |
82 | 85 | data: dependencies, |
83 | 86 | schema: schema, |
84 | 87 | column: 3, |
85 | 88 | }); |
89 | + | |
86 | 90 | const [registerDev] = useDescription({ |
87 | 91 | title: 'ๅผๅ็ฏๅขไพ่ต', |
88 | 92 | data: devDependencies, |
89 | 93 | schema: devSchema, |
90 | 94 | column: 3, |
91 | 95 | }); |
96 | + | |
92 | 97 | const [infoRegister] = useDescription({ |
93 | 98 | title: '้กน็ฎไฟกๆฏ', |
94 | 99 | data: infoData, | ... | ... |
src/views/sys/redirect/index.vue
yarn.lock
... | ... | @@ -292,12 +292,7 @@ |
292 | 292 | chalk "^2.0.0" |
293 | 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 | 296 | version "7.13.13" |
302 | 297 | resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.13.13.tgz#42f03862f4aed50461e543270916b47dd501f0df" |
303 | 298 | integrity sha512-OhsyMrqygfk5v8HmWwOzlYjJrtLaFhF34MrfG/Z73DgYCI6ojNUTUp2TYbtnjo8PegeJp12eamsNettCQjKjVw== |
... | ... | @@ -1745,14 +1740,6 @@ |
1745 | 1740 | dependencies: |
1746 | 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 | 1743 | "@types/sortablejs@^1.10.6": |
1757 | 1744 | version "1.10.6" |
1758 | 1745 | resolved "https://registry.npmjs.org/@types/sortablejs/-/sortablejs-1.10.6.tgz#98725ae08f1dfe28b8da0fdf302c417f5ff043c0" |
... | ... | @@ -1797,21 +1784,7 @@ |
1797 | 1784 | dependencies: |
1798 | 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 | 1788 | version "4.20.0" |
1816 | 1789 | resolved "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.20.0.tgz#9d8794bd99aad9153092ad13c96164e3082e9a92" |
1817 | 1790 | integrity sha512-sw+3HO5aehYqn5w177z2D82ZQlqHCwcKSMboueo7oE4KU9QiC0SAgfS/D4z9xXvpTc8Bt41Raa9fBR8T2tIhoQ== |
... | ... | @@ -1825,19 +1798,7 @@ |
1825 | 1798 | semver "^7.3.2" |
1826 | 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 | 1802 | version "4.20.0" |
1842 | 1803 | resolved "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.20.0.tgz#a8ab2d7b61924f99042b7d77372996d5f41dc44b" |
1843 | 1804 | integrity sha512-sQNlf6rjLq2yB5lELl3gOE7OuoA/6IVXJUJ+Vs7emrQMva14CkOwyQwD7CW+TkmOJ4Q/YGmoDLmbfFrpGmbKng== |
... | ... | @@ -1849,17 +1810,7 @@ |
1849 | 1810 | eslint-scope "^5.0.0" |
1850 | 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 | 1814 | version "4.20.0" |
1864 | 1815 | resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.20.0.tgz#8dd403c8b4258b99194972d9799e201b8d083bdd" |
1865 | 1816 | integrity sha512-m6vDtgL9EABdjMtKVw5rr6DdeMCH3OA1vFb0dAyuZSa3e5yw1YRzlwFnm9knma9Lz6b2GPvoNSa8vOXrqsaglA== |
... | ... | @@ -1869,14 +1820,6 @@ |
1869 | 1820 | "@typescript-eslint/typescript-estree" "4.20.0" |
1870 | 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 | 1823 | "@typescript-eslint/scope-manager@4.20.0": |
1881 | 1824 | version "4.20.0" |
1882 | 1825 | resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.20.0.tgz#953ecbf3b00845ece7be66246608be9d126d05ca" |
... | ... | @@ -1885,29 +1828,11 @@ |
1885 | 1828 | "@typescript-eslint/types" "4.20.0" |
1886 | 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 | 1831 | "@typescript-eslint/types@4.20.0": |
1894 | 1832 | version "4.20.0" |
1895 | 1833 | resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.20.0.tgz#c6cf5ef3c9b1c8f699a9bbdafb7a1da1ca781225" |
1896 | 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 | 1836 | "@typescript-eslint/typescript-estree@4.20.0": |
1912 | 1837 | version "4.20.0" |
1913 | 1838 | resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.20.0.tgz#8b3b08f85f18a8da5d88f65cb400f013e88ab7be" |
... | ... | @@ -1921,14 +1846,6 @@ |
1921 | 1846 | semver "^7.3.2" |
1922 | 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 | 1849 | "@typescript-eslint/visitor-keys@4.20.0": |
1933 | 1850 | version "4.20.0" |
1934 | 1851 | resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.20.0.tgz#1e84db034da13f208325e6bfc995c3b75f7dbd62" |
... | ... | @@ -1948,10 +1865,10 @@ |
1948 | 1865 | regenerator-runtime "^0.13.7" |
1949 | 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 | 1872 | dependencies: |
1956 | 1873 | "@babel/core" "^7.12.10" |
1957 | 1874 | "@babel/plugin-syntax-import-meta" "^7.10.4" |
... | ... | @@ -1995,17 +1912,6 @@ |
1995 | 1912 | estree-walker "^2.0.1" |
1996 | 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 | 1915 | "@vue/compiler-dom@3.0.10": |
2010 | 1916 | version "3.0.10" |
2011 | 1917 | resolved "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.0.10.tgz#59d3597498e7d4b0b92f3886a823f99d5b08f1fe" |
... | ... | @@ -2014,14 +1920,6 @@ |
2014 | 1920 | "@vue/compiler-core" "3.0.10" |
2015 | 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 | 1923 | "@vue/compiler-sfc@3.0.10": |
2026 | 1924 | version "3.0.10" |
2027 | 1925 | resolved "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.0.10.tgz#de6bc9be7f5ab1d944048a9be04c72c3571d4321" |
... | ... | @@ -2064,13 +1962,6 @@ |
2064 | 1962 | dependencies: |
2065 | 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 | 1965 | "@vue/runtime-core@3.0.10": |
2075 | 1966 | version "3.0.10" |
2076 | 1967 | resolved "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.0.10.tgz#cb8730c0ec86ea5c1cfa701facc0a97bf59b15a2" |
... | ... | @@ -2079,14 +1970,6 @@ |
2079 | 1970 | "@vue/reactivity" "3.0.10" |
2080 | 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 | 1973 | "@vue/runtime-dom@3.0.10": |
2091 | 1974 | version "3.0.10" |
2092 | 1975 | resolved "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.0.10.tgz#80c6ee28caeabf74f31357d2c64d177945bd8a5f" |
... | ... | @@ -2096,25 +1979,11 @@ |
2096 | 1979 | "@vue/shared" "3.0.10" |
2097 | 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 | 1982 | "@vue/shared@3.0.10": |
2109 | 1983 | version "3.0.10" |
2110 | 1984 | resolved "https://registry.npmjs.org/@vue/shared/-/shared-3.0.10.tgz#5476d5615d01bf339c65c2e804f5909bbc27844a" |
2111 | 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 | 1987 | "@vueuse/core@^4.6.3": |
2119 | 1988 | version "4.6.3" |
2120 | 1989 | resolved "https://registry.npmjs.org/@vueuse/core/-/core-4.6.3.tgz#9684b602cb0d08583ee9151c52760c4db1707da2" |
... | ... | @@ -2130,10 +1999,10 @@ |
2130 | 1999 | dependencies: |
2131 | 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 | 2006 | dependencies: |
2138 | 2007 | debug "^4.3.2" |
2139 | 2008 | fast-glob "^3.2.5" |
... | ... | @@ -2141,7 +2010,7 @@ |
2141 | 2010 | micromatch "^4.0.2" |
2142 | 2011 | pirates "^4.0.1" |
2143 | 2012 | sucrase "^3.17.1" |
2144 | - windicss "^2.5.7" | |
2013 | + windicss "^2.5.9" | |
2145 | 2014 | |
2146 | 2015 | "@zxcvbn-ts/core@^0.3.0": |
2147 | 2016 | version "0.3.0" |
... | ... | @@ -3823,14 +3692,7 @@ debug@^3.1.1, debug@^3.2.6: |
3823 | 3692 | dependencies: |
3824 | 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 | 3696 | version "4.3.2" |
3835 | 3697 | resolved "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b" |
3836 | 3698 | integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw== |
... | ... | @@ -4313,12 +4175,7 @@ esbuild@^0.11.2: |
4313 | 4175 | resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.11.2.tgz#3b995e107f2054d9090402b98a3b79ceffd05eb6" |
4314 | 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 | 4179 | version "0.9.7" |
4323 | 4180 | resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.9.7.tgz#ea0d639cbe4b88ec25fbed4d6ff00c8d788ef70b" |
4324 | 4181 | integrity sha512-VtUf6aQ89VTmMLKrWHYG50uByMF4JQlVysb8dmg6cOgW8JnFCipmz7p+HNBl+RR3LLCuBxFGVauAe2wfnF9bLg== |
... | ... | @@ -4414,50 +4271,7 @@ eslint-visitor-keys@^2.0.0: |
4414 | 4271 | resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz#21fdc8fbcd9c795cc0321f0563702095751511a8" |
4415 | 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 | 4275 | version "7.23.0" |
4462 | 4276 | resolved "https://registry.npmjs.org/eslint/-/eslint-7.23.0.tgz#8d029d252f6e8cf45894b4bee08f5493f8e94325" |
4463 | 4277 | integrity sha512-kqvNVbdkjzpFy0XOszNwjkKzZ+6TcwCQ/h+ozlcIWwaimBBuhlQ4nN6kbiM2L+OjDcznkTJxzYfRFH92sx4a0Q== |
... | ... | @@ -7656,7 +7470,7 @@ mz@^2.7.0: |
7656 | 7470 | object-assign "^4.0.1" |
7657 | 7471 | thenify-all "^1.0.0" |
7658 | 7472 | |
7659 | -nanoid@^3.1.20, nanoid@^3.1.22: | |
7473 | +nanoid@^3.1.22: | |
7660 | 7474 | version "3.1.22" |
7661 | 7475 | resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.1.22.tgz#b35f8fb7d151990a8aebd5aa5015c03cf726f844" |
7662 | 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 | 8371 | source-map "^0.6.1" |
8558 | 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 | 8375 | version "8.2.9" |
8571 | 8376 | resolved "https://registry.npmjs.org/postcss/-/postcss-8.2.9.tgz#fd95ff37b5cee55c409b3fdd237296ab4096fba3" |
8572 | 8377 | integrity sha512-b+TmuIL4jGtCHtoLi+G/PisuIl9avxs8IZMSmlABRwNz5RLUUACrC+ws81dcomz1nRezm5YPdXiMEzBEKgYn+Q== |
... | ... | @@ -9200,28 +9005,20 @@ rollup-plugin-terser@^7.0.0: |
9200 | 9005 | serialize-javascript "^4.0.0" |
9201 | 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 | 9012 | dependencies: |
9208 | 9013 | nanoid "^3.1.22" |
9209 | 9014 | open "^7.4.2" |
9210 | 9015 | source-map "^0.7.3" |
9211 | 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 | 9022 | optionalDependencies: |
9226 | 9023 | fsevents "~2.3.1" |
9227 | 9024 | |
... | ... | @@ -10881,10 +10678,10 @@ vite-plugin-imagemin@^0.2.9: |
10881 | 10678 | imagemin-svgo "^8.0.0" |
10882 | 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 | 10685 | dependencies: |
10889 | 10686 | "@rollup/plugin-node-resolve" "^11.2.1" |
10890 | 10687 | "@types/mockjs" "^1.0.3" |
... | ... | @@ -10969,15 +10766,15 @@ vite-plugin-theme@^0.5.0: |
10969 | 10766 | tinycolor2 "^1.4.2" |
10970 | 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 | 10773 | dependencies: |
10977 | - "@windicss/plugin-utils" "0.10.4" | |
10774 | + "@windicss/plugin-utils" "0.11.4" | |
10978 | 10775 | chalk "^4.1.0" |
10979 | 10776 | debug "^4.3.2" |
10980 | - windicss "^2.5.7" | |
10777 | + windicss "^2.5.9" | |
10981 | 10778 | |
10982 | 10779 | vite@2.1.5: |
10983 | 10780 | version "2.1.5" |
... | ... | @@ -11029,7 +10826,7 @@ vue-types@^3.0.0, vue-types@^3.0.2: |
11029 | 10826 | dependencies: |
11030 | 10827 | is-plain-object "3.0.1" |
11031 | 10828 | |
11032 | -vue@3.0.10: | |
10829 | +vue@3.0.10, vue@^3.0.0: | |
11033 | 10830 | version "3.0.10" |
11034 | 10831 | resolved "https://registry.npmjs.org/vue/-/vue-3.0.10.tgz#b5d2801c6ac0e756c850ad7a8f9a78cbccbad02a" |
11035 | 10832 | integrity sha512-6arZ722uqIArSNUU94aqx0Pq0IMHFqYZuJ+U+q9HGdZZu11VFpyFP/L/hakijGFKp56Jr0yxJdWbDiJGWPxwww== |
... | ... | @@ -11038,15 +10835,6 @@ vue@3.0.10: |
11038 | 10835 | "@vue/runtime-dom" "3.0.10" |
11039 | 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 | 10838 | vuex-module-decorators@^1.0.1: |
11051 | 10839 | version "1.0.1" |
11052 | 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 | 10948 | dependencies: |
11161 | 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 | 10956 | wmf@~1.0.1: |
11169 | 10957 | version "1.0.2" | ... | ... |