Commit 3732016062ca586c7d7ad7aa5e479c423be77871

Authored by Vben
1 parent 9cf67361

chore: update deps

package.json
... ... @@ -36,7 +36,7 @@
36 36 "@vueuse/core": "^4.4.1",
37 37 "@zxcvbn-ts/core": "^0.3.0",
38 38 "ant-design-vue": "2.0.1",
39   - "apexcharts": "^3.25.0",
  39 + "apexcharts": "^3.26.0",
40 40 "axios": "^0.21.1",
41 41 "crypto-js": "^4.0.0",
42 42 "echarts": "^5.0.2",
... ... @@ -73,8 +73,8 @@
73 73 "@types/rollup-plugin-visualizer": "^2.6.0",
74 74 "@types/sortablejs": "^1.10.6",
75 75 "@types/yargs": "^16.0.0",
76   - "@typescript-eslint/eslint-plugin": "^4.17.0",
77   - "@typescript-eslint/parser": "^4.17.0",
  76 + "@typescript-eslint/eslint-plugin": "^4.18.0",
  77 + "@typescript-eslint/parser": "^4.18.0",
78 78 "@vitejs/plugin-legacy": "^1.3.1",
79 79 "@vitejs/plugin-vue": "^1.1.5",
80 80 "@vitejs/plugin-vue-jsx": "^1.1.2",
... ... @@ -88,7 +88,7 @@
88 88 "eslint-config-prettier": "^8.1.0",
89 89 "eslint-plugin-prettier": "^3.3.1",
90 90 "eslint-plugin-vue": "^7.7.0",
91   - "esno": "^0.4.6",
  91 + "esno": "^0.5.0",
92 92 "fs-extra": "^9.1.0",
93 93 "http-server": "^0.12.3",
94 94 "husky": "^5.1.3",
... ... @@ -108,7 +108,7 @@
108 108 "stylelint-order": "^4.1.0",
109 109 "ts-node": "^9.1.1",
110 110 "typescript": "4.2.3",
111   - "vite": "^2.0.5",
  111 + "vite": "^2.1.0",
112 112 "vite-plugin-compression": "^0.2.3",
113 113 "vite-plugin-html": "^2.0.3",
114 114 "vite-plugin-imagemin": "^0.2.9",
... ... @@ -116,16 +116,15 @@
116 116 "vite-plugin-purge-icons": "^0.7.0",
117 117 "vite-plugin-pwa": "^0.5.6",
118 118 "vite-plugin-style-import": "^0.8.1",
119   - "vite-plugin-svg-icons": "^0.3.4",
  119 + "vite-plugin-svg-icons": "^0.3.5",
120 120 "vite-plugin-theme": "^0.5.0",
121   - "vite-plugin-windicss": "0.8.2",
  121 + "vite-plugin-windicss": "0.8.3",
122 122 "vue-eslint-parser": "^7.6.0",
123 123 "yargs": "^16.2.0"
124 124 },
125 125 "resolutions": {
126 126 "//": "Used to install imagemin dependencies, because imagemin may not be installed in China.If it is abroad, you can delete it",
127 127 "bin-wrapper": "npm:bin-wrapper-china",
128   - "esbuild": "0.8.57",
129 128 "rollup": "2.41.2"
130 129 },
131 130 "repository": {
... ...
src/components/Form/src/components/ApiSelect.vue
... ... @@ -30,6 +30,7 @@
30 30  
31 31 export default defineComponent({
32 32 name: 'ApiSelect',
  33 + inheritAttrs: false,
33 34 components: {
34 35 Select,
35 36 LoadingOutlined,
... ...
src/components/Time/src/index.vue
... ... @@ -40,7 +40,7 @@
40 40  
41 41 function getTime() {
42 42 const { value } = props;
43   - let time: number = 0;
  43 + let time = 0;
44 44 if (isNumber(value)) {
45 45 const timestamp = value.toString().length > 10 ? value : value * 1000;
46 46 time = new Date(timestamp).getTime();
... ...
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?
  4 +// Do not introduce` on-demand in local development?
5 5 // In the local development for on-demand introduction, the number of browser requests will increase by about 20%.
6 6 // Which may slow down the browser refresh.
7 7 // Therefore, all are introduced in local development, and only introduced on demand in the production environment
... ...
yarn.lock
... ... @@ -2005,6 +2005,11 @@
2005 2005 resolved "https://registry.npmjs.org/@types/svgo/-/svgo-1.3.3.tgz#4684af265b4e1125c738f5aaafb302c723f4efe0"
2006 2006 integrity sha512-eDLVUvvTn+mol3NpP211DTH9JzSS6YKssRIhHNmXk5BiCl+gc4s+xQQjRFTSsGBohmka5qBsHX6qhL4x88Wkvg==
2007 2007  
  2008 +"@types/svgo@^1.3.5":
  2009 + version "1.3.5"
  2010 + resolved "https://registry.npmjs.org/@types/svgo/-/svgo-1.3.5.tgz#18a0166fbcdfbfc7f17d0491da2ea07ee397d3f9"
  2011 + integrity sha512-y9Pw8IK50OqFRDpdI9Is29KlWiENVW9FDvlTmGHelvTfR2brYFJbsClvulZfeq6YKacFrDsG9a39w0kJZdHLaw==
  2012 +
2008 2013 "@types/through@*":
2009 2014 version "0.0.30"
2010 2015 resolved "https://registry.npmjs.org/@types/through/-/through-0.0.30.tgz#e0e42ce77e897bd6aead6f6ea62aeb135b8a3895"
... ... @@ -2041,7 +2046,7 @@
2041 2046 dependencies:
2042 2047 "@types/yargs-parser" "*"
2043 2048  
2044   -"@typescript-eslint/eslint-plugin@^4.16.1", "@typescript-eslint/eslint-plugin@^4.17.0":
  2049 +"@typescript-eslint/eslint-plugin@^4.16.1":
2045 2050 version "4.17.0"
2046 2051 resolved "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.17.0.tgz#6f856eca4e6a52ce9cf127dfd349096ad936aa2d"
2047 2052 integrity sha512-/fKFDcoHg8oNan39IKFOb5WmV7oWhQe1K6CDaAVfJaNWEhmfqlA24g+u1lqU5bMH7zuNasfMId4LaYWC5ijRLw==
... ... @@ -2055,6 +2060,20 @@
2055 2060 semver "^7.3.2"
2056 2061 tsutils "^3.17.1"
2057 2062  
  2063 +"@typescript-eslint/eslint-plugin@^4.18.0":
  2064 + version "4.18.0"
  2065 + resolved "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.18.0.tgz#50fbce93211b5b690895d20ebec6fe8db48af1f6"
  2066 + integrity sha512-Lzkc/2+7EoH7+NjIWLS2lVuKKqbEmJhtXe3rmfA8cyiKnZm3IfLf51irnBcmow8Q/AptVV0XBZmBJKuUJTe6cQ==
  2067 + dependencies:
  2068 + "@typescript-eslint/experimental-utils" "4.18.0"
  2069 + "@typescript-eslint/scope-manager" "4.18.0"
  2070 + debug "^4.1.1"
  2071 + functional-red-black-tree "^1.0.1"
  2072 + lodash "^4.17.15"
  2073 + regexpp "^3.0.0"
  2074 + semver "^7.3.2"
  2075 + tsutils "^3.17.1"
  2076 +
2058 2077 "@typescript-eslint/experimental-utils@4.17.0", "@typescript-eslint/experimental-utils@^4.0.1":
2059 2078 version "4.17.0"
2060 2079 resolved "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.17.0.tgz#762c44aaa1a6a3c05b6d63a8648fb89b89f84c80"
... ... @@ -2067,7 +2086,19 @@
2067 2086 eslint-scope "^5.0.0"
2068 2087 eslint-utils "^2.0.0"
2069 2088  
2070   -"@typescript-eslint/parser@^4.16.1", "@typescript-eslint/parser@^4.17.0":
  2089 +"@typescript-eslint/experimental-utils@4.18.0":
  2090 + version "4.18.0"
  2091 + resolved "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.18.0.tgz#ed6c955b940334132b17100d2917449b99a91314"
  2092 + integrity sha512-92h723Kblt9JcT2RRY3QS2xefFKar4ZQFVs3GityOKWQYgtajxt/tuXIzL7sVCUlM1hgreiV5gkGYyBpdOwO6A==
  2093 + dependencies:
  2094 + "@types/json-schema" "^7.0.3"
  2095 + "@typescript-eslint/scope-manager" "4.18.0"
  2096 + "@typescript-eslint/types" "4.18.0"
  2097 + "@typescript-eslint/typescript-estree" "4.18.0"
  2098 + eslint-scope "^5.0.0"
  2099 + eslint-utils "^2.0.0"
  2100 +
  2101 +"@typescript-eslint/parser@^4.16.1":
2071 2102 version "4.17.0"
2072 2103 resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.17.0.tgz#141b647ffc72ebebcbf9b0fe6087f65b706d3215"
2073 2104 integrity sha512-KYdksiZQ0N1t+6qpnl6JeK9ycCFprS9xBAiIrw4gSphqONt8wydBw4BXJi3C11ywZmyHulvMaLjWsxDjUSDwAw==
... ... @@ -2077,6 +2108,16 @@
2077 2108 "@typescript-eslint/typescript-estree" "4.17.0"
2078 2109 debug "^4.1.1"
2079 2110  
  2111 +"@typescript-eslint/parser@^4.18.0":
  2112 + version "4.18.0"
  2113 + resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.18.0.tgz#a211edb14a69fc5177054bec04c95b185b4dde21"
  2114 + integrity sha512-W3z5S0ZbecwX3PhJEAnq4mnjK5JJXvXUDBYIYGoweCyWyuvAKfGHvzmpUzgB5L4cRBb+cTu9U/ro66dx7dIimA==
  2115 + dependencies:
  2116 + "@typescript-eslint/scope-manager" "4.18.0"
  2117 + "@typescript-eslint/types" "4.18.0"
  2118 + "@typescript-eslint/typescript-estree" "4.18.0"
  2119 + debug "^4.1.1"
  2120 +
2080 2121 "@typescript-eslint/scope-manager@4.17.0":
2081 2122 version "4.17.0"
2082 2123 resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.17.0.tgz#f4edf94eff3b52a863180f7f89581bf963e3d37d"
... ... @@ -2085,11 +2126,24 @@
2085 2126 "@typescript-eslint/types" "4.17.0"
2086 2127 "@typescript-eslint/visitor-keys" "4.17.0"
2087 2128  
  2129 +"@typescript-eslint/scope-manager@4.18.0":
  2130 + version "4.18.0"
  2131 + resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.18.0.tgz#d75b55234c35d2ff6ac945758d6d9e53be84a427"
  2132 + integrity sha512-olX4yN6rvHR2eyFOcb6E4vmhDPsfdMyfQ3qR+oQNkAv8emKKlfxTWUXU5Mqxs2Fwe3Pf1BoPvrwZtwngxDzYzQ==
  2133 + dependencies:
  2134 + "@typescript-eslint/types" "4.18.0"
  2135 + "@typescript-eslint/visitor-keys" "4.18.0"
  2136 +
2088 2137 "@typescript-eslint/types@4.17.0":
2089 2138 version "4.17.0"
2090 2139 resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.17.0.tgz#f57d8fc7f31b348db946498a43050083d25f40ad"
2091 2140 integrity sha512-RN5z8qYpJ+kXwnLlyzZkiJwfW2AY458Bf8WqllkondQIcN2ZxQowAToGSd9BlAUZDB5Ea8I6mqL2quGYCLT+2g==
2092 2141  
  2142 +"@typescript-eslint/types@4.18.0":
  2143 + version "4.18.0"
  2144 + resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.18.0.tgz#bebe323f81f2a7e2e320fac9415e60856267584a"
  2145 + integrity sha512-/BRociARpj5E+9yQ7cwCF/SNOWwXJ3qhjurMuK2hIFUbr9vTuDeu476Zpu+ptxY2kSxUHDGLLKy+qGq2sOg37A==
  2146 +
2093 2147 "@typescript-eslint/typescript-estree@4.17.0", "@typescript-eslint/typescript-estree@^4.8.2":
2094 2148 version "4.17.0"
2095 2149 resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.17.0.tgz#b835d152804f0972b80dbda92477f9070a72ded1"
... ... @@ -2103,6 +2157,19 @@
2103 2157 semver "^7.3.2"
2104 2158 tsutils "^3.17.1"
2105 2159  
  2160 +"@typescript-eslint/typescript-estree@4.18.0":
  2161 + version "4.18.0"
  2162 + resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.18.0.tgz#756d3e61da8c16ab99185532c44872f4cd5538cb"
  2163 + integrity sha512-wt4xvF6vvJI7epz+rEqxmoNQ4ZADArGQO9gDU+cM0U5fdVv7N+IAuVoVAoZSOZxzGHBfvE3XQMLdy+scsqFfeg==
  2164 + dependencies:
  2165 + "@typescript-eslint/types" "4.18.0"
  2166 + "@typescript-eslint/visitor-keys" "4.18.0"
  2167 + debug "^4.1.1"
  2168 + globby "^11.0.1"
  2169 + is-glob "^4.0.1"
  2170 + semver "^7.3.2"
  2171 + tsutils "^3.17.1"
  2172 +
2106 2173 "@typescript-eslint/visitor-keys@4.17.0":
2107 2174 version "4.17.0"
2108 2175 resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.17.0.tgz#9c304cfd20287c14a31d573195a709111849b14d"
... ... @@ -2111,6 +2178,14 @@
2111 2178 "@typescript-eslint/types" "4.17.0"
2112 2179 eslint-visitor-keys "^2.0.0"
2113 2180  
  2181 +"@typescript-eslint/visitor-keys@4.18.0":
  2182 + version "4.18.0"
  2183 + resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.18.0.tgz#4e6fe2a175ee33418318a029610845a81e2ff7b6"
  2184 + integrity sha512-Q9t90JCvfYaN0OfFUgaLqByOfz8yPeTAdotn/XYNm5q9eHax90gzdb+RJ6E9T5s97Kv/UHWKERTmqA0jTKAEHw==
  2185 + dependencies:
  2186 + "@typescript-eslint/types" "4.18.0"
  2187 + eslint-visitor-keys "^2.0.0"
  2188 +
2114 2189 "@vitejs/plugin-legacy@^1.3.1":
2115 2190 version "1.3.1"
2116 2191 resolved "https://registry.npmjs.org/@vitejs/plugin-legacy/-/plugin-legacy-1.3.1.tgz#e475213721aa7c5022314c4a6489f961a65e8d4e"
... ... @@ -2304,15 +2379,15 @@
2304 2379 dependencies:
2305 2380 vue-demi latest
2306 2381  
2307   -"@windicss/plugin-utils@0.8.2":
2308   - version "0.8.2"
2309   - resolved "https://registry.npmjs.org/@windicss/plugin-utils/-/plugin-utils-0.8.2.tgz#032b21a79ff5af5031bf29bc3faeb0efcce73afb"
2310   - integrity sha512-jBv9w3VrUF5BjkP/WjY5Brf6CzJYeFMwcZFfOYiSPGuK+4+a/UmYX8B0/bISp5GnY9plVYr5aibTY9PTbt597Q==
  2382 +"@windicss/plugin-utils@0.8.3":
  2383 + version "0.8.3"
  2384 + resolved "https://registry.npmjs.org/@windicss/plugin-utils/-/plugin-utils-0.8.3.tgz#b694121cb1b4e022c1ebb97d2507d292ca1ce293"
  2385 + integrity sha512-Tk0/EOwRnfi3KzvYJwfDyrImbHRXd7jMUw0MsAJWee0pzHre5Se7IM8/8SrcafJ29aL3v9KcB/qd/uBD8TBmow==
2311 2386 dependencies:
2312 2387 fast-glob "^3.2.5"
2313 2388 micromatch "^4.0.2"
2314 2389 sucrase "^3.17.1"
2315   - windicss "^2.4.0"
  2390 + windicss "^2.4.5"
2316 2391  
2317 2392 "@zxcvbn-ts/core@^0.3.0":
2318 2393 version "0.3.0"
... ... @@ -2501,10 +2576,10 @@ anymatch@^3.0.3, anymatch@~3.1.1:
2501 2576 normalize-path "^3.0.0"
2502 2577 picomatch "^2.0.4"
2503 2578  
2504   -apexcharts@^3.25.0:
2505   - version "3.25.0"
2506   - resolved "https://registry.npmjs.org/apexcharts/-/apexcharts-3.25.0.tgz#f3f0f9f344f997230f5c7f2918408aa072627496"
2507   - integrity sha512-uM7OF+jLL4ba79noYcrMwMgJW8DI+Ff28CCQoGq23g25z8nGSQEoU+u12YWlECA9gBA5tbmdaQhMxjlK+M6B9Q==
  2579 +apexcharts@^3.26.0:
  2580 + version "3.26.0"
  2581 + resolved "https://registry.npmjs.org/apexcharts/-/apexcharts-3.26.0.tgz#a78abc108b2e1b3086a738f0ec7c98e292f4a14b"
  2582 + integrity sha512-zdYHs3k3tgmCn1BpYLj7rhGEndBYF33Pq1+g0ora37xAr+3act5CJrpdXM2jx2boVUyXgavoSp6sa8WpK7RkSA==
2508 2583 dependencies:
2509 2584 svg.draggable.js "^2.2.2"
2510 2585 svg.easing.js "^2.0.0"
... ... @@ -4659,11 +4734,16 @@ esbuild-register@^2.2.0:
4659 4734 dependencies:
4660 4735 jsonc-parser "^3.0.0"
4661 4736  
4662   -esbuild@0.8.57, esbuild@^0.8.52, esbuild@^0.8.56, esbuild@^0.8.57:
  4737 +esbuild@^0.8.57:
4663 4738 version "0.8.57"
4664 4739 resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.8.57.tgz#a42d02bc2b57c70bcd0ef897fe244766bb6dd926"
4665 4740 integrity sha512-j02SFrUwFTRUqiY0Kjplwjm1psuzO1d6AjaXKuOR9hrY0HuPsT6sV42B6myW34h1q4CRy+Y3g4RU/cGJeI/nNA==
4666 4741  
  4742 +esbuild@^0.9.2:
  4743 + version "0.9.2"
  4744 + resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.9.2.tgz#7e9fde247c913ed8ee059e2648b0c53f7d00abe5"
  4745 + integrity sha512-xE3oOILjnmN8PSjkG3lT9NBbd1DbxNqolJ5qNyrLhDWsFef3yTp/KTQz1C/x7BYFKbtrr9foYtKA6KA1zuNAUQ==
  4746 +
4667 4747 escalade@^3.1.1:
4668 4748 version "3.1.1"
4669 4749 resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
... ... @@ -4848,12 +4928,12 @@ eslint@^7.22.0:
4848 4928 text-table "^0.2.0"
4849 4929 v8-compile-cache "^2.0.3"
4850 4930  
4851   -esno@^0.4.6:
4852   - version "0.4.6"
4853   - resolved "https://registry.npmjs.org/esno/-/esno-0.4.6.tgz#2482fa119c7f111224c091575c7d43ad13cfbcc6"
4854   - integrity sha512-6sjoAqYmkLL5h/9eNchRblH6Eq1WrUmak2ROHjH/6lyakGSmdPsl/pigp+pXez7yqPU0bsy4W5hpyoUUjlxhsQ==
  4931 +esno@^0.5.0:
  4932 + version "0.5.0"
  4933 + resolved "https://registry.npmjs.org/esno/-/esno-0.5.0.tgz#49849227d5cecc29b0fc1705fc575721af8485b2"
  4934 + integrity sha512-r0tsflar7RB918JCjTNyU2QWfgyH2jgfAzHK1tABr3A5y84ruS86JanVHc6wove/V5I98soLZbg8Foso1dqCMA==
4855 4935 dependencies:
4856   - esbuild "^0.8.56"
  4936 + esbuild "^0.9.2"
4857 4937 esbuild-register "^2.2.0"
4858 4938  
4859 4939 espree@^6.2.1:
... ... @@ -10710,16 +10790,15 @@ svgo@^1.3.2:
10710 10790 unquote "~1.1.1"
10711 10791 util.promisify "~1.0.0"
10712 10792  
10713   -svgo@^2.2.0:
10714   - version "2.2.0"
10715   - resolved "https://registry.npmjs.org/svgo/-/svgo-2.2.0.tgz#36bc3950507fd06e210493b8bc7722c1e14b1213"
10716   - integrity sha512-78w27VB+Vvca8TNRZrpbN70OTaVXgyQKm/rBiEqFPZmEJkn6i3PqEgIniPqPY6H2kFevakixAfBaQlwuStZuBA==
  10793 +svgo@^2.2.2:
  10794 + version "2.2.2"
  10795 + resolved "https://registry.npmjs.org/svgo/-/svgo-2.2.2.tgz#51d67c7149661282d22a3c8683f4795cdb40f687"
  10796 + integrity sha512-kJugY2d0yrsONnG4YavppVkKmKULMw2iFRbB9+usyWqzTaqoBuUaqdMnQ2G1n5P1dmOA2tZvc5zmMM6sPOVBSQ==
10717 10797 dependencies:
10718 10798 "@trysound/sax" "0.1.1"
10719 10799 chalk "^4.1.0"
10720 10800 commander "^7.1.0"
10721 10801 css-select "^3.1.2"
10722   - css-select-base-adapter "^0.1.1"
10723 10802 css-tree "^1.1.2"
10724 10803 csso "^4.2.0"
10725 10804 stable "^0.1.8"
... ... @@ -11505,16 +11584,17 @@ vite-plugin-style-import@^0.8.1:
11505 11584 es-module-lexer "^0.4.1"
11506 11585 magic-string "^0.25.7"
11507 11586  
11508   -vite-plugin-svg-icons@^0.3.4:
11509   - version "0.3.4"
11510   - resolved "https://registry.npmjs.org/vite-plugin-svg-icons/-/vite-plugin-svg-icons-0.3.4.tgz#505aacff35f19d4e1c81f05a85bded0d6f1f6323"
11511   - integrity sha512-N4KYqmyF/gnsYIBxvMTyotjWSdur/6EyycE6eJvM2m7oHHxe8Y+SZZlD+XTz8Nl+zfurXYDkrbbHAdtWlpJovw==
  11587 +vite-plugin-svg-icons@^0.3.5:
  11588 + version "0.3.5"
  11589 + resolved "https://registry.npmjs.org/vite-plugin-svg-icons/-/vite-plugin-svg-icons-0.3.5.tgz#7fb72fcd17ee8b8a1c19fac1682e83169b72ad99"
  11590 + integrity sha512-MyldHrtpfhc2zZH0/AS4bW1TtpluBpdINCODiBZpfvwO9YavvT827kp4TnXfqUhiiCNZbkMUS16u2vDijaL7CQ==
11512 11591 dependencies:
  11592 + "@types/svgo" "^1.3.5"
11513 11593 debug "^4.3.2"
11514 11594 etag "^1.8.1"
11515 11595 fs-extra "^9.1.0"
11516 11596 svg-baker "1.7.0"
11517   - svgo "^2.2.0"
  11597 + svgo "^2.2.2"
11518 11598  
11519 11599 vite-plugin-theme@^0.5.0:
11520 11600 version "0.5.0"
... ... @@ -11546,20 +11626,20 @@ vite-plugin-theme@^0.5.0:
11546 11626 tinycolor2 "^1.4.2"
11547 11627 ts-jest "^26.5.3"
11548 11628  
11549   -vite-plugin-windicss@0.8.2:
11550   - version "0.8.2"
11551   - resolved "https://registry.npmjs.org/vite-plugin-windicss/-/vite-plugin-windicss-0.8.2.tgz#cb7a4e03ed218007425be60e54cd4f21cca836d1"
11552   - integrity sha512-eeHmCAbmeKg1k0r5moPEQrVPFebfsCCGkKUSb8MYWkglLfpcBZfCHyTTdpn/PONy/JcvWrdpbND2/tsy30it3g==
  11629 +vite-plugin-windicss@0.8.3:
  11630 + version "0.8.3"
  11631 + resolved "https://registry.npmjs.org/vite-plugin-windicss/-/vite-plugin-windicss-0.8.3.tgz#81944473f642a4d4da81f9f8d77012e73095e4a3"
  11632 + integrity sha512-VhiYUBIexKD1Il1dxV6yB4SN+ufza3HWhKK7IFFGrf4gj2JqSX9MNUdS2jPOEInyJszw+fT7WrHj1hsYd7ROJA==
11553 11633 dependencies:
11554   - "@windicss/plugin-utils" "0.8.2"
11555   - windicss "^2.4.0"
  11634 + "@windicss/plugin-utils" "0.8.3"
  11635 + windicss "^2.4.5"
11556 11636  
11557   -vite@^2.0.5:
11558   - version "2.0.5"
11559   - resolved "https://registry.npmjs.org/vite/-/vite-2.0.5.tgz#ac46857a3fa8686d077921e61bd48a986931df1d"
11560   - integrity sha512-QTgEDbq1WsTtr6j+++ewjhBFEk6c8v0xz4fb/OWJQKNYU8ZZtphOshwOqAlnarSstPBtWCBR0tsugXx6ajfoUg==
  11637 +vite@^2.1.0:
  11638 + version "2.1.0"
  11639 + resolved "https://registry.npmjs.org/vite/-/vite-2.1.0.tgz#fdaab9cca360a88b654eaf942d13be29ed0958eb"
  11640 + integrity sha512-qWYmX8slkv91C3hWA2iu0o0ZvFbO2dSfWIN4dbMfSeMdNn+XeirkGWU3dy5/W1Nv13cQZvVoMTl8zyC13VFRZQ==
11561 11641 dependencies:
11562   - esbuild "^0.8.52"
  11642 + esbuild "^0.9.2"
11563 11643 postcss "^8.2.1"
11564 11644 resolve "^1.19.0"
11565 11645 rollup "^2.38.5"
... ... @@ -11743,10 +11823,10 @@ which@^2.0.1, which@^2.0.2:
11743 11823 dependencies:
11744 11824 isexe "^2.0.0"
11745 11825  
11746   -windicss@^2.4.0:
11747   - version "2.4.0"
11748   - resolved "https://registry.npmjs.org/windicss/-/windicss-2.4.0.tgz#9aa0108399d5d3925d5ad5860e76c80299de0cab"
11749   - integrity sha512-EcGkGnZpuoH0r/hNuj4GLheb9Lg3P+s5KOHUZU63zkl6yoMQNAwTvNXai7OjylbXLFDEWii7SAJbwQIFxE56qQ==
  11826 +windicss@^2.4.5:
  11827 + version "2.4.7"
  11828 + resolved "https://registry.npmjs.org/windicss/-/windicss-2.4.7.tgz#6154cc128eec80bd0cb71b34dda02dfcbacfb1aa"
  11829 + integrity sha512-7CuHMxa4r/sUHVqF1v+glcxWVetbG2j5V+JXRk/C//+CN8Sn8yoWHl8KcDqaDtX6nLF8WQRl0q56GUshgWgxwQ==
11750 11830  
11751 11831 wmf@~1.0.1:
11752 11832 version "1.0.2"
... ...