Commit b803c4100d5b40c04ae4c3b7153f7f8f32d7da81
1 parent
3571eb4c
fix(menu-trigger): menu-trigger lost
Showing
5 changed files
with
153 additions
and
137 deletions
CHANGELOG.en_US.md
CHANGELOG.zh_CN.md
package.json
... | ... | @@ -47,7 +47,7 @@ |
47 | 47 | "@commitlint/config-conventional": "^11.0.0", |
48 | 48 | "@iconify/json": "^1.1.285", |
49 | 49 | "@ls-lint/ls-lint": "^1.9.2", |
50 | - "@purge-icons/generated": "^0.5.0", | |
50 | + "@purge-icons/generated": "^0.5.1", | |
51 | 51 | "@types/echarts": "^4.9.3", |
52 | 52 | "@types/fs-extra": "^9.0.6", |
53 | 53 | "@types/http-proxy": "^1.17.4", |
... | ... | @@ -64,7 +64,7 @@ |
64 | 64 | "@typescript-eslint/parser": "^4.13.0", |
65 | 65 | "@vitejs/plugin-legacy": "^1.2.0", |
66 | 66 | "@vitejs/plugin-vue": "^1.0.5", |
67 | - "@vitejs/plugin-vue-jsx": "^1.0.1", | |
67 | + "@vitejs/plugin-vue-jsx": "^1.0.2", | |
68 | 68 | "@vue/compiler-sfc": "^3.0.5", |
69 | 69 | "@vuedx/typecheck": "^0.5.0", |
70 | 70 | "@vuedx/typescript-plugin-vue": "^0.5.0", |
... | ... | @@ -96,10 +96,10 @@ |
96 | 96 | "stylelint-order": "^4.1.0", |
97 | 97 | "ts-node": "^9.1.0", |
98 | 98 | "typescript": "^4.1.3", |
99 | - "vite": "^2.0.0-beta.23", | |
99 | + "vite": "^2.0.0-beta.26", | |
100 | 100 | "vite-plugin-html": "^2.0.0-beta.5", |
101 | 101 | "vite-plugin-mock": "^2.0.0-beta.3", |
102 | - "vite-plugin-purge-icons": "^0.5.0", | |
102 | + "vite-plugin-purge-icons": "^0.5.1", | |
103 | 103 | "vite-plugin-pwa": "^0.3.6", |
104 | 104 | "vue-eslint-parser": "^7.3.0", |
105 | 105 | "yargs": "^16.2.0" | ... | ... |
src/layouts/default/trigger/index.vue
... | ... | @@ -6,12 +6,13 @@ |
6 | 6 | import { defineComponent } from 'vue'; |
7 | 7 | import { createAsyncComponent } from '/@/utils/factory/createAsyncComponent'; |
8 | 8 | import { propTypes } from '/@/utils/propTypes'; |
9 | + import HeaderTrigger from './HeaderTrigger.vue'; | |
9 | 10 | |
10 | 11 | export default defineComponent({ |
11 | 12 | name: 'LayoutTrigger', |
12 | 13 | components: { |
13 | 14 | SiderTrigger: createAsyncComponent(() => import('./SiderTrigger.vue')), |
14 | - HeaderTrigger: createAsyncComponent(() => import('./HeaderTrigger.vue'), { loading: true }), | |
15 | + HeaderTrigger: HeaderTrigger, | |
15 | 16 | }, |
16 | 17 | props: { |
17 | 18 | sider: propTypes.bool.def(true), | ... | ... |
yarn.lock
... | ... | @@ -1177,15 +1177,17 @@ |
1177 | 1177 | dependencies: |
1178 | 1178 | "@hapi/hoek" "^8.3.0" |
1179 | 1179 | |
1180 | -"@iconify/iconify@2.0.0-rc.5", "@iconify/iconify@>=2.0.0-rc.5", "@iconify/iconify@^2.0.0-rc.5": | |
1181 | - version "2.0.0-rc.5" | |
1182 | - resolved "https://registry.npmjs.org/@iconify/iconify/-/iconify-2.0.0-rc.5.tgz#ac725a2ea40a0626d02dfb31482050751a0e6d84" | |
1183 | - integrity sha512-A65cga+dug1Z5Y6T7euq1Fnk5Wc7Qu6yn6mVBAfo2SnPndekl9JC+eBe2M3RdTJIdIi10p7OUs7ntKKQLK1j5w== | |
1180 | +"@iconify/iconify@2.0.0-rc.6", "@iconify/iconify@>=2.0.0-rc.6", "@iconify/iconify@^2.0.0-rc.6": | |
1181 | + version "2.0.0-rc.6" | |
1182 | + resolved "https://registry.npmjs.org/@iconify/iconify/-/iconify-2.0.0-rc.6.tgz#e3f5376b63b441dcb3696317784b98e2e678cf46" | |
1183 | + integrity sha512-pXvLXqLPQsjpDY4qbbyh5cPEtakTfWfQCAo6SdYNhYQzat+/0fbeEhScryqaketNAG0bT4/+deKezkJZTvbuSg== | |
1184 | + dependencies: | |
1185 | + cross-fetch "^3.0.6" | |
1184 | 1186 | |
1185 | -"@iconify/json@^1.1.284": | |
1186 | - version "1.1.284" | |
1187 | - resolved "https://registry.npmjs.org/@iconify/json/-/json-1.1.284.tgz#d8a70ed9cfc76a03bbc00fabdca19cc0a9134760" | |
1188 | - integrity sha512-NjTud7YfBbZrsib5AB35Qp5fgy2FKv4suRRetqXFZxuFdTcxEje8CiMQVdB8rFLMrx96lfY0dX4VDSB7luYwVw== | |
1187 | +"@iconify/json@^1.1.285": | |
1188 | + version "1.1.285" | |
1189 | + resolved "https://registry.npmjs.org/@iconify/json/-/json-1.1.285.tgz#2f1665c9f3ce4cd9eb2e0c980c0ac8955ce520fc" | |
1190 | + integrity sha512-ABoWg/GibeN3hzTvvzd9oSmSo3V8Hyb3f0LMMUD195xlrd8083nBzFFhA12EfEMnxNsouj6ZtvlgIDnYWEXRow== | |
1189 | 1191 | |
1190 | 1192 | "@intlify/core-base@9.0.0-beta.16": |
1191 | 1193 | version "9.0.0-beta.16" |
... | ... | @@ -1197,15 +1199,15 @@ |
1197 | 1199 | "@intlify/runtime" "9.0.0-beta.16" |
1198 | 1200 | "@intlify/shared" "9.0.0-beta.16" |
1199 | 1201 | |
1200 | -"@intlify/core-base@9.0.0-rc.1": | |
1201 | - version "9.0.0-rc.1" | |
1202 | - resolved "https://registry.npmjs.org/@intlify/core-base/-/core-base-9.0.0-rc.1.tgz#92bd60c222626c1cb8a01234a1662cf11a5a7261" | |
1203 | - integrity sha512-PqC7FQByeFyNmDOW5LePJfBIV6wL4R4sv8+Gecv9l2SsnkJ4nDCTGcpBT0YRdDDDfKpLhSTHSm+sLdSuHv7EVQ== | |
1202 | +"@intlify/core-base@9.0.0-rc.2": | |
1203 | + version "9.0.0-rc.2" | |
1204 | + resolved "https://registry.npmjs.org/@intlify/core-base/-/core-base-9.0.0-rc.2.tgz#55adc44f5bb046404e872851e796cc2e19174d40" | |
1205 | + integrity sha512-Ob1Pa1+N3kAHRXISmsS8Xyq34l8ZBwAwBYfwx34OSbnjBC0PoSGe6Mgx/50RwXXDIpT/vbzQpLWf+QV+HAuEHQ== | |
1204 | 1206 | dependencies: |
1205 | - "@intlify/message-compiler" "9.0.0-rc.1" | |
1206 | - "@intlify/message-resolver" "9.0.0-rc.1" | |
1207 | - "@intlify/runtime" "9.0.0-rc.1" | |
1208 | - "@intlify/shared" "9.0.0-rc.1" | |
1207 | + "@intlify/message-compiler" "9.0.0-rc.2" | |
1208 | + "@intlify/message-resolver" "9.0.0-rc.2" | |
1209 | + "@intlify/runtime" "9.0.0-rc.2" | |
1210 | + "@intlify/shared" "9.0.0-rc.2" | |
1209 | 1211 | |
1210 | 1212 | "@intlify/core@^9.0.0-beta.15": |
1211 | 1213 | version "9.0.0-beta.16" |
... | ... | @@ -1223,13 +1225,13 @@ |
1223 | 1225 | "@intlify/shared" "9.0.0-beta.16" |
1224 | 1226 | source-map "0.6.1" |
1225 | 1227 | |
1226 | -"@intlify/message-compiler@9.0.0-rc.1": | |
1227 | - version "9.0.0-rc.1" | |
1228 | - resolved "https://registry.npmjs.org/@intlify/message-compiler/-/message-compiler-9.0.0-rc.1.tgz#152a971a634fe8b581a033a552bd637da2b2a259" | |
1229 | - integrity sha512-oPo/6v6lFvzbVj86ikWzYbHpRatyVQCSASJgGCIhvUGxdyvfxqKr+kQudbKWx/QiBq6cBioMuyh9hOGPhvBPMA== | |
1228 | +"@intlify/message-compiler@9.0.0-rc.2": | |
1229 | + version "9.0.0-rc.2" | |
1230 | + resolved "https://registry.npmjs.org/@intlify/message-compiler/-/message-compiler-9.0.0-rc.2.tgz#b2ea4852af26f62e850c36157c4b8c03e7a072f4" | |
1231 | + integrity sha512-ahq1sIIFXX+NZfxDLzIPe49PiObjVpPhsNOkA3z16rhulAmNo7Kz62CTxzVdjG/rXzRP6VYm2kNZlIEzrcL6sw== | |
1230 | 1232 | dependencies: |
1231 | - "@intlify/message-resolver" "9.0.0-rc.1" | |
1232 | - "@intlify/shared" "9.0.0-rc.1" | |
1233 | + "@intlify/message-resolver" "9.0.0-rc.2" | |
1234 | + "@intlify/shared" "9.0.0-rc.2" | |
1233 | 1235 | source-map "0.6.1" |
1234 | 1236 | |
1235 | 1237 | "@intlify/message-resolver@9.0.0-beta.16": |
... | ... | @@ -1237,10 +1239,10 @@ |
1237 | 1239 | resolved "https://registry.npmjs.org/@intlify/message-resolver/-/message-resolver-9.0.0-beta.16.tgz#f8960344201050d17560f8d01f63e3cd0b9bf59c" |
1238 | 1240 | integrity sha512-xwjsFuDDYEv7g1KE5QZRbrPgfsrNsDhYLtNYR7Tn4inzbmB6ipak2UlDzDcQGLieSFbe1WwAoNL0IXy4sUKboQ== |
1239 | 1241 | |
1240 | -"@intlify/message-resolver@9.0.0-rc.1": | |
1241 | - version "9.0.0-rc.1" | |
1242 | - resolved "https://registry.npmjs.org/@intlify/message-resolver/-/message-resolver-9.0.0-rc.1.tgz#f3c4c1b6e2ffb9cd6c6f6cd40bf92d339b847c65" | |
1243 | - integrity sha512-vgt7qqHcHJenehnNG6APOmorpYi2XulD4TJHISNwISGlVz9Mf5+H4uilGkWA/+8k9kUOx5sh/5aN3IP2O8cgbA== | |
1242 | +"@intlify/message-resolver@9.0.0-rc.2": | |
1243 | + version "9.0.0-rc.2" | |
1244 | + resolved "https://registry.npmjs.org/@intlify/message-resolver/-/message-resolver-9.0.0-rc.2.tgz#d6f5eac6dc594ebb1c5e2f68a94fd9e5429c4a15" | |
1245 | + integrity sha512-CNRrIflQmq3aZWsyGu3mfR9d+xA7W0t5HZQeSh+YR9IBHxNg+2uWbYhGDab87yzovIGOnUSO9yxUdD8gBBmR9Q== | |
1244 | 1246 | |
1245 | 1247 | "@intlify/runtime@9.0.0-beta.16": |
1246 | 1248 | version "9.0.0-beta.16" |
... | ... | @@ -1251,24 +1253,24 @@ |
1251 | 1253 | "@intlify/message-resolver" "9.0.0-beta.16" |
1252 | 1254 | "@intlify/shared" "9.0.0-beta.16" |
1253 | 1255 | |
1254 | -"@intlify/runtime@9.0.0-rc.1": | |
1255 | - version "9.0.0-rc.1" | |
1256 | - resolved "https://registry.npmjs.org/@intlify/runtime/-/runtime-9.0.0-rc.1.tgz#400a99eb6f01820d34ce5a5385a15657c004099a" | |
1257 | - integrity sha512-6n/Tf9cI+SfuB7GCIkI4AxMu9y4vTrhfrJYkAg8wOddE7jHf6TA4moXGnTnzcd+6gYWiB+UweNAfSebZt59MdQ== | |
1256 | +"@intlify/runtime@9.0.0-rc.2": | |
1257 | + version "9.0.0-rc.2" | |
1258 | + resolved "https://registry.npmjs.org/@intlify/runtime/-/runtime-9.0.0-rc.2.tgz#20f83a2f57a7789a9588e42a2cf5163f6f13255b" | |
1259 | + integrity sha512-FO+PsHYRPWXwj13zse0My8u6dcnCyEFpIkJ30CbvOtrk/VKUOTQJq2Q0/w32PzIIImx166NAtcMPIUfVZq7iLA== | |
1258 | 1260 | dependencies: |
1259 | - "@intlify/message-compiler" "9.0.0-rc.1" | |
1260 | - "@intlify/message-resolver" "9.0.0-rc.1" | |
1261 | - "@intlify/shared" "9.0.0-rc.1" | |
1261 | + "@intlify/message-compiler" "9.0.0-rc.2" | |
1262 | + "@intlify/message-resolver" "9.0.0-rc.2" | |
1263 | + "@intlify/shared" "9.0.0-rc.2" | |
1262 | 1264 | |
1263 | 1265 | "@intlify/shared@9.0.0-beta.16": |
1264 | 1266 | version "9.0.0-beta.16" |
1265 | 1267 | resolved "https://registry.npmjs.org/@intlify/shared/-/shared-9.0.0-beta.16.tgz#51a80ca4705c93cb14c8f06398dfc550df09d67d" |
1266 | 1268 | integrity sha512-A7GSOovcZn/NMoAmDc8FG9uRcFv6iygriK8+C6HFeOnMQ9X+T9f5A9bPtXhCOCiRpQm9SUtGqXedxO5Y8rz9/A== |
1267 | 1269 | |
1268 | -"@intlify/shared@9.0.0-rc.1": | |
1269 | - version "9.0.0-rc.1" | |
1270 | - resolved "https://registry.npmjs.org/@intlify/shared/-/shared-9.0.0-rc.1.tgz#73a57c74682b09a6f7f69b1b43904384a344c05e" | |
1271 | - integrity sha512-pOOtAKEIIuGSos+cuy5FKlANMev3x8qG7VJS9wTKy8JJcBzk98Ypt1+oNTOv0B5aIXpRRpxZVAXatvAorXT5/A== | |
1270 | +"@intlify/shared@9.0.0-rc.2": | |
1271 | + version "9.0.0-rc.2" | |
1272 | + resolved "https://registry.npmjs.org/@intlify/shared/-/shared-9.0.0-rc.2.tgz#31f53616fe515e8629f39c179f217ca562d06256" | |
1273 | + integrity sha512-VxFKsdVy0KsdFiB8lBWidMN0ydSPCv8D+hItGhiL75YWd6ShHoayA5ZR9otdvCfVGkGH6/nB+7MoWK19bpDmWw== | |
1272 | 1274 | |
1273 | 1275 | "@ls-lint/ls-lint@^1.9.2": |
1274 | 1276 | version "1.9.2" |
... | ... | @@ -1296,23 +1298,23 @@ |
1296 | 1298 | "@nodelib/fs.scandir" "2.1.3" |
1297 | 1299 | fastq "^1.6.0" |
1298 | 1300 | |
1299 | -"@purge-icons/core@^0.5.0": | |
1300 | - version "0.5.0" | |
1301 | - resolved "https://registry.npmjs.org/@purge-icons/core/-/core-0.5.0.tgz#0f84a5aff15f665099d4a14edd986aa5dad12d25" | |
1302 | - integrity sha512-+5Q9hXR7EKdtIZcm5o5baBfrJINec30UrxsQY9rrLJh2pbF6xIQyvDShcXJNQHyx5z3SsfFpood3EZskfWV/mQ== | |
1301 | +"@purge-icons/core@^0.5.1": | |
1302 | + version "0.5.1" | |
1303 | + resolved "https://registry.npmjs.org/@purge-icons/core/-/core-0.5.1.tgz#d4052b744287e28ec5889cda6620885e68d80f86" | |
1304 | + integrity sha512-saeIk5KczF5xtJfAy0Mi2TDMMfZPieE7vXw3hUrWTuaOAuYhCx5rtXNuh0ql/Vu0F0IqHJjIIfAyiWmqKmtzow== | |
1303 | 1305 | dependencies: |
1304 | - "@iconify/iconify" "2.0.0-rc.5" | |
1306 | + "@iconify/iconify" "2.0.0-rc.6" | |
1305 | 1307 | axios "^0.21.1" |
1306 | 1308 | debug "^4.3.2" |
1307 | 1309 | fast-glob "^3.2.4" |
1308 | 1310 | fs-extra "^9.0.1" |
1309 | 1311 | |
1310 | -"@purge-icons/generated@^0.5.0": | |
1311 | - version "0.5.0" | |
1312 | - resolved "https://registry.npmjs.org/@purge-icons/generated/-/generated-0.5.0.tgz#8039d97fe054d0a4788fb896ee552f2edab21205" | |
1313 | - integrity sha512-GYiWjOKu5JZyhXIQwMcF2hfTxw2UHk4bOE68JyEDRE7a7y2JTSIyy90HX+sf0uPT8OSfobNrBy/x+LQRGqhudQ== | |
1312 | +"@purge-icons/generated@^0.5.1": | |
1313 | + version "0.5.1" | |
1314 | + resolved "https://registry.npmjs.org/@purge-icons/generated/-/generated-0.5.1.tgz#fbdb984dd72a9a4ab0650ef0153f3e88278cec56" | |
1315 | + integrity sha512-S6uqlaWoo+L29cxiSNzrw6Lq27IZvESUg/S6MNNiPqY4z+seogzTZgh+KKEY64PqLvm8I4CoRE+fxhWzsj7GRQ== | |
1314 | 1316 | dependencies: |
1315 | - "@iconify/iconify" ">=2.0.0-rc.5" | |
1317 | + "@iconify/iconify" ">=2.0.0-rc.6" | |
1316 | 1318 | |
1317 | 1319 | "@rollup/plugin-babel@^5.2.0": |
1318 | 1320 | version "5.2.2" |
... | ... | @@ -1759,15 +1761,15 @@ |
1759 | 1761 | regenerator-runtime "^0.13.7" |
1760 | 1762 | systemjs "^6.8.3" |
1761 | 1763 | |
1762 | -"@vitejs/plugin-vue-jsx@^1.0.1": | |
1763 | - version "1.0.1" | |
1764 | - resolved "https://registry.npmjs.org/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-1.0.1.tgz#97d84f6bd4737c1afa88a4afdec529ddb8bed2ab" | |
1765 | - integrity sha512-MXKGCgfICswM3HcNEwzjnMGrcIy2MWpLlbIt90CIgJ+/zI1RBODxfHBkGRtPvUzbIjhW9B1KcrivibLVfM4dTg== | |
1764 | +"@vitejs/plugin-vue-jsx@^1.0.2": | |
1765 | + version "1.0.2" | |
1766 | + resolved "https://registry.npmjs.org/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-1.0.2.tgz#41d8767d086a6e57401002c80081c6ad9982e410" | |
1767 | + integrity sha512-IAwqCjWOXkxOYvpy8hKuanIPLRANI9h9i48sGzMwrzPDTAond80rGFJ1GqAn06cl5/m5ErUyBqfmmAd7kOA/wg== | |
1766 | 1768 | dependencies: |
1767 | 1769 | "@babel/core" "^7.12.10" |
1768 | 1770 | "@babel/plugin-syntax-import-meta" "^7.10.4" |
1769 | 1771 | "@babel/plugin-transform-typescript" "^7.12.1" |
1770 | - "@vue/babel-plugin-jsx" "^1.0.0" | |
1772 | + "@vue/babel-plugin-jsx" "^1.0.1" | |
1771 | 1773 | hash-sum "^2.0.0" |
1772 | 1774 | |
1773 | 1775 | "@vitejs/plugin-vue@^1.0.5": |
... | ... | @@ -1780,10 +1782,10 @@ |
1780 | 1782 | resolved "https://registry.npmjs.org/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.0.0.tgz#8cbec6bbcae53626ad70139061be5e73403c9a62" |
1781 | 1783 | integrity sha512-svFuKPoXP92TJ76ztENOglOsLjcMGUXkdeQhYDxl6KBnZCpqFjqx6RodUPWFg1bj4zsUVsfoIh1RibLO86fUUQ== |
1782 | 1784 | |
1783 | -"@vue/babel-plugin-jsx@^1.0.0": | |
1784 | - version "1.0.0" | |
1785 | - resolved "https://registry.npmjs.org/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.0.0.tgz#1dabe1cf8588d088226fd5666ff1987f2f11982d" | |
1786 | - integrity sha512-WoqRUaslY52PKJFcd7PZExAxhvm6xU5u47l2xFi+UbywzTh/vU2WwgGg3rA2N1HqYJbWFT9hDGFcFqOT6hcBHw== | |
1785 | +"@vue/babel-plugin-jsx@^1.0.1": | |
1786 | + version "1.0.1" | |
1787 | + resolved "https://registry.npmjs.org/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.0.1.tgz#8ece4e521888fabe2c96adca428606e5cea55f54" | |
1788 | + integrity sha512-pE1YlINZBzqaLeSNfrvo0nNvYjtWTBU+sXUrx65sLW7DL+nDCZcAVeVkMFDcpT1jIahx4hI3EzOcGZE6oLPLoA== | |
1787 | 1789 | dependencies: |
1788 | 1790 | "@babel/helper-module-imports" "^7.0.0" |
1789 | 1791 | "@babel/plugin-syntax-jsx" "^7.0.0" |
... | ... | @@ -1926,10 +1928,10 @@ |
1926 | 1928 | resolved "https://registry.npmjs.org/@vue/shared/-/shared-3.0.5.tgz#c131d88bd6713cc4d93b3bb1372edb1983225ff0" |
1927 | 1929 | integrity sha512-gYsNoGkWejBxNO6SNRjOh/xKeZ0H0V+TFzaPzODfBjkAIb0aQgBuixC1brandC/CDJy1wYPwSoYrXpvul7m6yw== |
1928 | 1930 | |
1929 | -"@vuedx/analyze@0.4.1": | |
1930 | - version "0.4.1" | |
1931 | - resolved "https://registry.npmjs.org/@vuedx/analyze/-/analyze-0.4.1.tgz#9d5b888ee1b9a798794a44283100f8270bbb6e83" | |
1932 | - integrity sha512-7FBFWboGCFDVtMnc+egZU0UpdKFfuyhRVjs+pycWvZ630eKsGK4zKRKmJBXqccctWO2FRRRuW4pXfi1SbJGY0w== | |
1931 | +"@vuedx/analyze@0.5.0": | |
1932 | + version "0.5.0" | |
1933 | + resolved "https://registry.npmjs.org/@vuedx/analyze/-/analyze-0.5.0.tgz#5a16c65321d0b3d6997d69aefdc50abc92a082b6" | |
1934 | + integrity sha512-F+Q8GVq17MIZrYdTuswx3vplEE9TV4K3lCgf+yWBuZyPnSdymFTrvkmI7CMUNkZutceBL7RmM2C1PASlJAWapA== | |
1933 | 1935 | dependencies: |
1934 | 1936 | "@babel/code-frame" "^7.10.4" |
1935 | 1937 | "@babel/generator" "^7.12.1" |
... | ... | @@ -1938,84 +1940,85 @@ |
1938 | 1940 | "@babel/traverse" "7.12.1" |
1939 | 1941 | "@babel/types" "7.12.1" |
1940 | 1942 | "@types/micromatch" "^4.0.1" |
1941 | - "@vuedx/compiler-sfc" "0.4.1" | |
1942 | - "@vuedx/compiler-tsx" "0.4.1" | |
1943 | - "@vuedx/projectconfig" "0.4.1" | |
1944 | - "@vuedx/template-ast-types" "0.4.1" | |
1943 | + "@vuedx/compiler-sfc" "0.5.0" | |
1944 | + "@vuedx/compiler-tsx" "0.5.0" | |
1945 | + "@vuedx/projectconfig" "0.5.0" | |
1946 | + "@vuedx/template-ast-types" "0.5.0" | |
1945 | 1947 | cli-highlight "^2.1.4" |
1946 | 1948 | commander "^6.1.0" |
1947 | 1949 | fast-glob "^3.2.4" |
1948 | 1950 | hash-sum "^2.0.0" |
1949 | 1951 | micromatch "^4.0.2" |
1950 | 1952 | |
1951 | -"@vuedx/compiler-sfc@0.4.1": | |
1952 | - version "0.4.1" | |
1953 | - resolved "https://registry.npmjs.org/@vuedx/compiler-sfc/-/compiler-sfc-0.4.1.tgz#e324bc9e0aaff8a4ddb35e40892a7d884f72f431" | |
1954 | - integrity sha512-WmiNcf6RsTTRqb0oaUhQQ/b0Eg+o+XZRdIqlgvqU5OYxTSYiajDz+Rc+2jIjByFL4WRwyfkKnKPk7C58JW6WGA== | |
1953 | +"@vuedx/compiler-sfc@0.5.0": | |
1954 | + version "0.5.0" | |
1955 | + resolved "https://registry.npmjs.org/@vuedx/compiler-sfc/-/compiler-sfc-0.5.0.tgz#ce695d65460bc323737a3a6219b351eadfe7ef87" | |
1956 | + integrity sha512-JqxCvFpYCAzZkcvHJLPrUQ9NXDofmsM4bKC+VxNMgKL830GnGkhjOmoVWa0yzjSdKb3ZcPs5xzRlchhh4Av2EA== | |
1955 | 1957 | dependencies: |
1956 | 1958 | "@vue/compiler-core" "^3.0.2" |
1957 | 1959 | lru-cache "^6.0.0" |
1958 | 1960 | source-map "^0.6.1" |
1959 | 1961 | |
1960 | -"@vuedx/compiler-tsx@0.4.1": | |
1961 | - version "0.4.1" | |
1962 | - resolved "https://registry.npmjs.org/@vuedx/compiler-tsx/-/compiler-tsx-0.4.1.tgz#c22b7632f7528bf7b3a4905ed1b932da49d4bf5c" | |
1963 | - integrity sha512-qlK9HDrMxcOnh4/yX4/gXaEaas4L4qpN4UskfyyGLM5NmBWSjX5dGagTvKsNd0WIl5RBIYiwEYLkuoCfOJGwUw== | |
1962 | +"@vuedx/compiler-tsx@0.5.0": | |
1963 | + version "0.5.0" | |
1964 | + resolved "https://registry.npmjs.org/@vuedx/compiler-tsx/-/compiler-tsx-0.5.0.tgz#4878965fefb741a97a2e8fe9bd161af83ea406b4" | |
1965 | + integrity sha512-n8ZIvI/Sef0r2VymQQSQT4WxhAwsEv705as8u2JkZRWDKoJJN9Psd5V1efIdEE24IV3OPFISd5HeHGkk8f8RrQ== | |
1964 | 1966 | dependencies: |
1965 | 1967 | "@babel/parser" "7.12.3" |
1966 | 1968 | "@babel/types" "7.12.1" |
1967 | 1969 | "@vue/compiler-core" "^3.0.1" |
1968 | - "@vuedx/template-ast-types" "0.4.1" | |
1970 | + "@vuedx/template-ast-types" "0.5.0" | |
1969 | 1971 | |
1970 | -"@vuedx/projectconfig@0.4.1": | |
1971 | - version "0.4.1" | |
1972 | - resolved "https://registry.npmjs.org/@vuedx/projectconfig/-/projectconfig-0.4.1.tgz#73db7ecf1ec38adc996d9180108d4b2ddde1d189" | |
1973 | - integrity sha512-rQMfQzEzeg7Y7+D2P+HDwPYiG5LRv+iE5klARAwtW/PZ27sn/PT40taDkgw199bwpZaYT2bKAwMU1CN/ATF+pg== | |
1972 | +"@vuedx/projectconfig@0.5.0": | |
1973 | + version "0.5.0" | |
1974 | + resolved "https://registry.npmjs.org/@vuedx/projectconfig/-/projectconfig-0.5.0.tgz#21405a8897d419ba42c905dd9c68dc347e2150c3" | |
1975 | + integrity sha512-+eoqRHwLzYveVdo/zkUf9LTvBvG9e32HoPZUlbIrhrWvZOmwsG1C1y2CoNcXvy+jonGh7EkypElwe8p1mOJlzw== | |
1974 | 1976 | |
1975 | -"@vuedx/template-ast-types@0.4.1": | |
1976 | - version "0.4.1" | |
1977 | - resolved "https://registry.npmjs.org/@vuedx/template-ast-types/-/template-ast-types-0.4.1.tgz#5587b93ba0b2d4bf904f6e6cce76992860c0598a" | |
1978 | - integrity sha512-PK465sch8Jzh33wJjYbWoXf41yp7xGNxyqW+AmEJ02HiB4HRHaK2RdHxc6FutyluEaTurgDFNdr2iAkiHVZeoA== | |
1977 | +"@vuedx/template-ast-types@0.5.0": | |
1978 | + version "0.5.0" | |
1979 | + resolved "https://registry.npmjs.org/@vuedx/template-ast-types/-/template-ast-types-0.5.0.tgz#73c4ec27980fd16e64e800c215fa04d02dac25fc" | |
1980 | + integrity sha512-MZclcnb2UNQvX7Kd+hPjZH0EJdHHqpThlThy8UuNwJXrCPRelAtEf3UAfGliLZsZGaqjsOCfcNTnwRl0+Iu0WA== | |
1979 | 1981 | dependencies: |
1980 | 1982 | "@vue/compiler-core" "^3.0.0" |
1981 | 1983 | |
1982 | -"@vuedx/typecheck@^0.4.1": | |
1983 | - version "0.4.1" | |
1984 | - resolved "https://registry.npmjs.org/@vuedx/typecheck/-/typecheck-0.4.1.tgz#5235f6a464b3732c9481740d79e444a48bc58e06" | |
1985 | - integrity sha512-fNd6+N5HVX2qGMKlL6X+e1FIn1GO37ErfgGMnV7UdCzUyOsfzVldEw6sNu1NHyZ0pnPZduQ0rNMDaY88BJHtZQ== | |
1984 | +"@vuedx/typecheck@^0.5.0": | |
1985 | + version "0.5.0" | |
1986 | + resolved "https://registry.npmjs.org/@vuedx/typecheck/-/typecheck-0.5.0.tgz#4b90b6c350edc794e2d33582861e5ddd089f6fa2" | |
1987 | + integrity sha512-sN7TkyMvvSGWrB/+s+nWZ5cX85cv32kXzrxnC5kMjjt7UuxxQ3yY1H7cRH4dfSzP6hlWk4mQlD7/BPUvX+mBdw== | |
1986 | 1988 | dependencies: |
1987 | - "@vuedx/typescript-plugin-vue" "0.4.1" | |
1988 | - "@vuedx/vue-virtual-textdocument" "0.4.1" | |
1989 | + "@vuedx/typescript-plugin-vue" "0.5.0" | |
1990 | + "@vuedx/vue-virtual-textdocument" "0.5.0" | |
1989 | 1991 | chalk "^4.1.0" |
1990 | 1992 | fast-glob "^3.2.4" |
1991 | 1993 | minimist "^1.2.5" |
1994 | + resolve-from "^5.0.0" | |
1992 | 1995 | typescript "^4.0.3" |
1993 | 1996 | |
1994 | -"@vuedx/typescript-plugin-vue@0.4.1", "@vuedx/typescript-plugin-vue@^0.4.1": | |
1995 | - version "0.4.1" | |
1996 | - resolved "https://registry.npmjs.org/@vuedx/typescript-plugin-vue/-/typescript-plugin-vue-0.4.1.tgz#5375ff9e25e1708d24a50b36bbb566a5fc82143f" | |
1997 | - integrity sha512-JK2PJc05u1/PfHd3QJ9jmPBzbqBsORzliglt8Xpd/wsV9pfRsIF/Qtg5bRkqc495MpiSZiyTgLFOxov216P3TA== | |
1997 | +"@vuedx/typescript-plugin-vue@0.5.0", "@vuedx/typescript-plugin-vue@^0.5.0": | |
1998 | + version "0.5.0" | |
1999 | + resolved "https://registry.npmjs.org/@vuedx/typescript-plugin-vue/-/typescript-plugin-vue-0.5.0.tgz#9ee65cf4f9f9d4cb2afe78cbfb96ff7b5bb34f93" | |
2000 | + integrity sha512-D8E+I4blOFB+rjLSmiiqMB2sLgpzUQROqJEuz7CZhnphp3k5FcLfPY1aFUsdLg6pQQ85JyujGfTFdfytLL80Yw== | |
1998 | 2001 | dependencies: |
1999 | 2002 | "@intlify/core" "^9.0.0-beta.15" |
2000 | - "@vuedx/analyze" "0.4.1" | |
2001 | - "@vuedx/compiler-sfc" "0.4.1" | |
2002 | - "@vuedx/projectconfig" "0.4.1" | |
2003 | - "@vuedx/template-ast-types" "0.4.1" | |
2004 | - "@vuedx/vue-virtual-textdocument" "0.4.1" | |
2003 | + "@vuedx/analyze" "0.5.0" | |
2004 | + "@vuedx/compiler-sfc" "0.5.0" | |
2005 | + "@vuedx/projectconfig" "0.5.0" | |
2006 | + "@vuedx/template-ast-types" "0.5.0" | |
2007 | + "@vuedx/vue-virtual-textdocument" "0.5.0" | |
2005 | 2008 | de-indent "^1.0.2" |
2006 | 2009 | json5 "^2.1.3" |
2007 | 2010 | quick-lru "^5.1.1" |
2008 | 2011 | vscode-uri "^2.1.2" |
2009 | 2012 | vscode-web-custom-data "^0.3.2" |
2010 | 2013 | |
2011 | -"@vuedx/vue-virtual-textdocument@0.4.1": | |
2012 | - version "0.4.1" | |
2013 | - resolved "https://registry.npmjs.org/@vuedx/vue-virtual-textdocument/-/vue-virtual-textdocument-0.4.1.tgz#6d61dce6f71c71357ac3e9b5fc3b8d33e5fd4ea2" | |
2014 | - integrity sha512-uyBXaf3/Y2QdssfLG1hmQKbSD/2tYM2eeeHKK56Klz1RzkRBxBAP0rkKS/riHzDZfVuHQ6QP4qa4QpTSav5RGQ== | |
2014 | +"@vuedx/vue-virtual-textdocument@0.5.0": | |
2015 | + version "0.5.0" | |
2016 | + resolved "https://registry.npmjs.org/@vuedx/vue-virtual-textdocument/-/vue-virtual-textdocument-0.5.0.tgz#3c72ae2ac254d745f813cfb197892f58da3dda6a" | |
2017 | + integrity sha512-uIZmXhyiG1myZuXeix3YqZE9ONUxFiTaswUmnalNnwXXOXXKwYVtVxs/03pNZdtXiVlKh53Hf9VW26Rgx/IVQg== | |
2015 | 2018 | dependencies: |
2016 | - "@vuedx/analyze" "0.4.1" | |
2017 | - "@vuedx/compiler-sfc" "0.4.1" | |
2018 | - "@vuedx/compiler-tsx" "0.4.1" | |
2019 | + "@vuedx/analyze" "0.5.0" | |
2020 | + "@vuedx/compiler-sfc" "0.5.0" | |
2021 | + "@vuedx/compiler-tsx" "0.5.0" | |
2019 | 2022 | source-map "^0.6.1" |
2020 | 2023 | vscode-languageserver-textdocument "^1.0.1" |
2021 | 2024 | vscode-uri "^2.1.2" |
... | ... | @@ -3113,6 +3116,13 @@ cross-env@^7.0.3: |
3113 | 3116 | dependencies: |
3114 | 3117 | cross-spawn "^7.0.1" |
3115 | 3118 | |
3119 | +cross-fetch@^3.0.6: | |
3120 | + version "3.0.6" | |
3121 | + resolved "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.0.6.tgz#3a4040bc8941e653e0e9cf17f29ebcd177d3365c" | |
3122 | + integrity sha512-KBPUbqgFjzWlVcURG+Svp9TlhA5uliYtiNx/0r8nv0pdypeQCRJ9IaSIc3q/x3q8t3F75cHuwxVql1HFGHCNJQ== | |
3123 | + dependencies: | |
3124 | + node-fetch "2.6.1" | |
3125 | + | |
3116 | 3126 | cross-spawn@^7.0.0, cross-spawn@^7.0.1, cross-spawn@^7.0.2: |
3117 | 3127 | version "7.0.3" |
3118 | 3128 | resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" |
... | ... | @@ -5584,6 +5594,11 @@ no-case@^3.0.4: |
5584 | 5594 | lower-case "^2.0.2" |
5585 | 5595 | tslib "^2.0.3" |
5586 | 5596 | |
5597 | +node-fetch@2.6.1: | |
5598 | + version "2.6.1" | |
5599 | + resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052" | |
5600 | + integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw== | |
5601 | + | |
5587 | 5602 | node-modules-regexp@^1.0.0: |
5588 | 5603 | version "1.0.0" |
5589 | 5604 | resolved "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40" |
... | ... | @@ -6658,13 +6673,13 @@ rollup-plugin-gzip@^2.5.0: |
6658 | 6673 | resolved "https://registry.npmjs.org/rollup-plugin-gzip/-/rollup-plugin-gzip-2.5.0.tgz#786650e7bddf86d7f723c205c3e3018ea727388c" |
6659 | 6674 | integrity sha512-1N0xtJJ8XfZYklZN1QcMLe+Mos2Vaccy3YUarE/AB1RkH7mkeppkFAz9srh+9KWOC3I2LWJeAYwFabO0rJ4mxg== |
6660 | 6675 | |
6661 | -rollup-plugin-purge-icons@^0.5.0: | |
6662 | - version "0.5.0" | |
6663 | - resolved "https://registry.npmjs.org/rollup-plugin-purge-icons/-/rollup-plugin-purge-icons-0.5.0.tgz#1a40b7834ee201abaca8baa5a50d9ad8d6a62b9a" | |
6664 | - integrity sha512-poYNDdz0Wl2TOSvq/KH2jMqjMRJhoaa08/VDKsP4AAaGBW0UDeb5Y3r6GYDFq58Z+A9lfE5zdWzIAzVfsHYiiw== | |
6676 | +rollup-plugin-purge-icons@^0.5.1: | |
6677 | + version "0.5.1" | |
6678 | + resolved "https://registry.npmjs.org/rollup-plugin-purge-icons/-/rollup-plugin-purge-icons-0.5.1.tgz#d31c237021cadcaa9afdd585654b1e285ead53c4" | |
6679 | + integrity sha512-h1yrwiVy2C0SpLl0SglR2ZLOtr0pomg/LLyoViStdTQYKVVznJT/RSs1WZZESsfTLWI1xio0Ou7IMogkIqm0Ow== | |
6665 | 6680 | dependencies: |
6666 | - "@purge-icons/core" "^0.5.0" | |
6667 | - "@purge-icons/generated" "^0.5.0" | |
6681 | + "@purge-icons/core" "^0.5.1" | |
6682 | + "@purge-icons/generated" "^0.5.1" | |
6668 | 6683 | |
6669 | 6684 | rollup-plugin-terser@^7.0.0: |
6670 | 6685 | version "7.0.2" |
... | ... | @@ -7816,29 +7831,29 @@ vite-plugin-mock@^2.0.0-beta.3: |
7816 | 7831 | rollup "^2.35.1" |
7817 | 7832 | rollup-plugin-esbuild "^2.6.1" |
7818 | 7833 | |
7819 | -vite-plugin-purge-icons@^0.5.0: | |
7820 | - version "0.5.0" | |
7821 | - resolved "https://registry.npmjs.org/vite-plugin-purge-icons/-/vite-plugin-purge-icons-0.5.0.tgz#81ad2887039b3993d34e2f09dfcf5662ebe21177" | |
7822 | - integrity sha512-3eZTQxnv1GEn35jY7WMj5x+5oCqvay2eqv/3n6c8g3L+GIgLBzhi4kFtjUmN6Zhq0pYKyXr8mezcF2nxx+3BWg== | |
7834 | +vite-plugin-purge-icons@^0.5.1: | |
7835 | + version "0.5.1" | |
7836 | + resolved "https://registry.npmjs.org/vite-plugin-purge-icons/-/vite-plugin-purge-icons-0.5.1.tgz#3491eaedce061682fe3c2d5928abd781cb6c4f13" | |
7837 | + integrity sha512-O/gVrdYFGTwfcbTKh0cBFbSEKjX8KlC7WTDOPRay8O9ESJ0S/TggZqfNDisUhR8cGQHNqydX6JRaGzK9CYB0Lw== | |
7823 | 7838 | dependencies: |
7824 | - "@purge-icons/core" "^0.5.0" | |
7825 | - "@purge-icons/generated" "^0.5.0" | |
7826 | - rollup-plugin-purge-icons "^0.5.0" | |
7839 | + "@purge-icons/core" "^0.5.1" | |
7840 | + "@purge-icons/generated" "^0.5.1" | |
7841 | + rollup-plugin-purge-icons "^0.5.1" | |
7827 | 7842 | |
7828 | -vite-plugin-pwa@^0.3.5: | |
7829 | - version "0.3.5" | |
7830 | - resolved "https://registry.npmjs.org/vite-plugin-pwa/-/vite-plugin-pwa-0.3.5.tgz#a1700e60ab91fa5fa92d0bdf7102ac87187ac00e" | |
7831 | - integrity sha512-mabDRu/rk6w/f5eXGlNzD8GJCw8kKeg82UTLmaUYj3M7G5eKvyRYTXVPY2TPe1WWPMTE1c3Ypw9iL4QDV707Ww== | |
7843 | +vite-plugin-pwa@^0.3.6: | |
7844 | + version "0.3.6" | |
7845 | + resolved "https://registry.npmjs.org/vite-plugin-pwa/-/vite-plugin-pwa-0.3.6.tgz#a522af3fd5461991907f6829975b437f2c847339" | |
7846 | + integrity sha512-GDgT8jFGHUz2j11I7Z0W+X5mnkaUoMVitJ/UjN/ezjy9HcXrvxaIVnhzMdESJSv+dxy4DD9ymD91cF9Ei6//cQ== | |
7832 | 7847 | dependencies: |
7833 | 7848 | debug "^4.3.2" |
7834 | 7849 | fast-glob "^3.2.4" |
7835 | 7850 | pretty-bytes "^5.5.0" |
7836 | 7851 | workbox-build "^6.0.2" |
7837 | 7852 | |
7838 | -vite@^2.0.0-beta.23: | |
7839 | - version "2.0.0-beta.23" | |
7840 | - resolved "https://registry.npmjs.org/vite/-/vite-2.0.0-beta.23.tgz#9cbbfc85c5737f5bdee4784c7b838365852396f7" | |
7841 | - integrity sha512-vrQ56VBUCSjNFgx6DapDXMo6fkW2s3S7zmxWCIEE2ZiAbxoTQCic+NveTiMRA4+JF29ZQf00tzsAri6BIzi9VA== | |
7853 | +vite@^2.0.0-beta.26: | |
7854 | + version "2.0.0-beta.26" | |
7855 | + resolved "https://registry.npmjs.org/vite/-/vite-2.0.0-beta.26.tgz#70e2277003de609b218ddb33d740f76d01f01dc2" | |
7856 | + integrity sha512-/OZ5X5nq9xV3UKO2x3Xl83RQM0DsRWsa4htaRyzZ6e+G5Z+SfMiUlveJctSoPJ3JjoIBm4bbDAe0rXM5Mt2tlw== | |
7842 | 7857 | dependencies: |
7843 | 7858 | esbuild "^0.8.26" |
7844 | 7859 | postcss "^8.2.1" |
... | ... | @@ -7879,13 +7894,13 @@ vue-eslint-parser@^7.3.0: |
7879 | 7894 | esquery "^1.0.1" |
7880 | 7895 | lodash "^4.17.15" |
7881 | 7896 | |
7882 | -vue-i18n@^9.0.0-rc.1: | |
7883 | - version "9.0.0-rc.1" | |
7884 | - resolved "https://registry.npmjs.org/vue-i18n/-/vue-i18n-9.0.0-rc.1.tgz#47188d60cb1de2818924cdb6abecedf4e97b5cda" | |
7885 | - integrity sha512-pp1bLvu6iGV4QtaUnYB9WmDpOWAWb/j9fx9zIqhI6mYsKPY7kBACeVv8qskSeOoRQm4bjDxqUUQdion3UWfFCw== | |
7897 | +vue-i18n@^9.0.0-rc.2: | |
7898 | + version "9.0.0-rc.2" | |
7899 | + resolved "https://registry.npmjs.org/vue-i18n/-/vue-i18n-9.0.0-rc.2.tgz#c644fae92f57aa648558b09ac343dd8435455c38" | |
7900 | + integrity sha512-1t3PirgLaKeERwWGYgGr+Umo74cCzGrhnOeYzMX+DqGTduXs7IjuJ5gxPUAuQcA4o+DCm9DgjkeWuqtbYO3YAg== | |
7886 | 7901 | dependencies: |
7887 | - "@intlify/core-base" "9.0.0-rc.1" | |
7888 | - "@intlify/shared" "9.0.0-rc.1" | |
7902 | + "@intlify/core-base" "9.0.0-rc.2" | |
7903 | + "@intlify/shared" "9.0.0-rc.2" | |
7889 | 7904 | "@vue/devtools-api" "^6.0.0-beta.3" |
7890 | 7905 | |
7891 | 7906 | vue-router@^4.0.3: | ... | ... |