Commit e2664f60029f03642f8b1a6afa9b1998705fce37
1 parent
225bd4c3
perf: improve legacy compatibility
Showing
4 changed files
with
305 additions
and
172 deletions
.env.production
build/vite/plugin/index.ts
... | ... | @@ -37,7 +37,21 @@ export function createVitePlugins(viteEnv: ViteEnv, isBuild: boolean) { |
37 | 37 | !isBuild && vitePlugins.push(configHmrPlugin()); |
38 | 38 | |
39 | 39 | // @vitejs/plugin-legacy |
40 | - VITE_LEGACY && isBuild && vitePlugins.push(legacy()); | |
40 | + VITE_LEGACY && | |
41 | + isBuild && | |
42 | + vitePlugins.push( | |
43 | + legacy({ | |
44 | + targets: [ | |
45 | + 'Android > 39', | |
46 | + 'Chrome >= 60', | |
47 | + 'Safari >= 10.1', | |
48 | + 'iOS >= 10.3', | |
49 | + 'Firefox >= 54', | |
50 | + 'Edge >= 15', | |
51 | + ], | |
52 | + additionalLegacyPolyfills: ['regenerator-runtime/runtime'], | |
53 | + }) | |
54 | + ); | |
41 | 55 | |
42 | 56 | // vite-plugin-html |
43 | 57 | vitePlugins.push(configHtmlPlugin(viteEnv, isBuild)); | ... | ... |
package.json
... | ... | @@ -35,9 +35,9 @@ |
35 | 35 | }, |
36 | 36 | "dependencies": { |
37 | 37 | "@iconify/iconify": "^2.0.3", |
38 | - "@logicflow/core": "^0.6.1", | |
39 | - "@logicflow/extension": "^0.6.1", | |
40 | - "@vueuse/core": "^5.1.4", | |
38 | + "@logicflow/core": "^0.6.4", | |
39 | + "@logicflow/extension": "^0.6.4", | |
40 | + "@vueuse/core": "^5.2.0", | |
41 | 41 | "@zxcvbn-ts/core": "^1.0.0-beta.0", |
42 | 42 | "ant-design-vue": "2.2.2", |
43 | 43 | "axios": "^0.21.1", |
... | ... | @@ -50,7 +50,7 @@ |
50 | 50 | "mockjs": "^1.1.0", |
51 | 51 | "nprogress": "^0.2.0", |
52 | 52 | "path-to-regexp": "^6.2.0", |
53 | - "pinia": "^2.0.0-beta.5", | |
53 | + "pinia": "2.0.0-beta.5", | |
54 | 54 | "print-js": "^1.6.0", |
55 | 55 | "qrcode": "^1.4.4", |
56 | 56 | "resize-observer-polyfill": "^1.5.1", |
... | ... | @@ -58,10 +58,10 @@ |
58 | 58 | "tinymce": "^5.8.2", |
59 | 59 | "vditor": "^3.8.6", |
60 | 60 | "vue": "3.1.5", |
61 | - "vue-i18n": "9.1.6", | |
61 | + "vue-i18n": "9.1.7", | |
62 | 62 | "vue-json-pretty": "^2.0.2", |
63 | 63 | "vue-router": "^4.0.10", |
64 | - "vue-types": "^4.0.0", | |
64 | + "vue-types": "^4.0.1", | |
65 | 65 | "xlsx": "^0.17.0" |
66 | 66 | }, |
67 | 67 | "devDependencies": { |
... | ... | @@ -77,18 +77,18 @@ |
77 | 77 | "@types/jest": "^26.0.24", |
78 | 78 | "@types/lodash-es": "^4.17.4", |
79 | 79 | "@types/mockjs": "^1.0.4", |
80 | - "@types/node": "^16.4.2", | |
80 | + "@types/node": "^16.4.6", | |
81 | 81 | "@types/nprogress": "^0.2.0", |
82 | 82 | "@types/qrcode": "^1.4.1", |
83 | 83 | "@types/qs": "^6.9.7", |
84 | 84 | "@types/sortablejs": "^1.10.7", |
85 | - "@typescript-eslint/eslint-plugin": "^4.28.4", | |
86 | - "@typescript-eslint/parser": "^4.28.4", | |
87 | - "@vitejs/plugin-legacy": "^1.4.4", | |
88 | - "@vitejs/plugin-vue": "^1.2.5", | |
89 | - "@vitejs/plugin-vue-jsx": "^1.1.6", | |
85 | + "@typescript-eslint/eslint-plugin": "^4.28.5", | |
86 | + "@typescript-eslint/parser": "^4.28.5", | |
87 | + "@vitejs/plugin-legacy": "^1.5.0", | |
88 | + "@vitejs/plugin-vue": "^1.3.0", | |
89 | + "@vitejs/plugin-vue-jsx": "^1.1.7", | |
90 | 90 | "@vue/compiler-sfc": "3.1.5", |
91 | - "@vue/test-utils": "^2.0.0-rc.10", | |
91 | + "@vue/test-utils": "^2.0.0-rc.12", | |
92 | 92 | "autoprefixer": "^10.3.1", |
93 | 93 | "commitizen": "^4.2.4", |
94 | 94 | "conventional-changelog-cli": "^2.1.1", |
... | ... | @@ -123,7 +123,7 @@ |
123 | 123 | "ts-jest": "^27.0.4", |
124 | 124 | "ts-node": "^10.1.0", |
125 | 125 | "typescript": "4.3.5", |
126 | - "vite": "2.4.3", | |
126 | + "vite": "2.4.4", | |
127 | 127 | "vite-plugin-compression": "^0.3.1", |
128 | 128 | "vite-plugin-html": "^2.0.7", |
129 | 129 | "vite-plugin-imagemin": "^0.4.1", |
... | ... | @@ -133,13 +133,13 @@ |
133 | 133 | "vite-plugin-style-import": "^1.0.1", |
134 | 134 | "vite-plugin-svg-icons": "^1.0.1", |
135 | 135 | "vite-plugin-theme": "^0.8.1", |
136 | - "vue-eslint-parser": "^7.9.0", | |
136 | + "vue-eslint-parser": "^7.10.0", | |
137 | 137 | "vue-tsc": "^0.2.2" |
138 | 138 | }, |
139 | 139 | "resolutions": { |
140 | 140 | "//": "Used to install imagemin dependencies, because imagemin may not be installed in China. If it is abroad, you can delete it", |
141 | 141 | "bin-wrapper": "npm:bin-wrapper-china", |
142 | - "rollup": "^2.53.3" | |
142 | + "rollup": "^2.55.0" | |
143 | 143 | }, |
144 | 144 | "repository": { |
145 | 145 | "type": "git", | ... | ... |
yarn.lock
... | ... | @@ -43,7 +43,7 @@ |
43 | 43 | resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.14.5.tgz#8ef4c18e58e801c5c95d3c1c0f2874a2680fadea" |
44 | 44 | integrity sha512-kixrYn4JwfAVPa0f2yfzc2AWti6WRRyO3XjWW5PJAvtE11qhSayrrcrEnee05KAtNaPC+EwehE8Qt1UedEVB8w== |
45 | 45 | |
46 | -"@babel/core@>=7.9.0", "@babel/core@^7.1.0", "@babel/core@^7.11.1", "@babel/core@^7.14.6", "@babel/core@^7.7.2", "@babel/core@^7.7.5": | |
46 | +"@babel/core@>=7.9.0", "@babel/core@^7.1.0", "@babel/core@^7.11.1", "@babel/core@^7.7.2", "@babel/core@^7.7.5": | |
47 | 47 | version "7.14.6" |
48 | 48 | resolved "https://registry.npmjs.org/@babel/core/-/core-7.14.6.tgz#e0814ec1a950032ff16c13a2721de39a8416fcab" |
49 | 49 | integrity sha512-gJnOEWSqTk96qG5BoIrl5bVtc23DCycmIePPYnamY9RboYdI4nFy5vAQMSl81O5K/W0sLDWfGysnOECC+KUUCA== |
... | ... | @@ -64,6 +64,27 @@ |
64 | 64 | semver "^6.3.0" |
65 | 65 | source-map "^0.5.0" |
66 | 66 | |
67 | +"@babel/core@^7.14.8": | |
68 | + version "7.14.8" | |
69 | + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.14.8.tgz#20cdf7c84b5d86d83fac8710a8bc605a7ba3f010" | |
70 | + integrity sha512-/AtaeEhT6ErpDhInbXmjHcUQXH0L0TEgscfcxk1qbOvLuKCa5aZT0SOOtDKFY96/CLROwbLSKyFor6idgNaU4Q== | |
71 | + dependencies: | |
72 | + "@babel/code-frame" "^7.14.5" | |
73 | + "@babel/generator" "^7.14.8" | |
74 | + "@babel/helper-compilation-targets" "^7.14.5" | |
75 | + "@babel/helper-module-transforms" "^7.14.8" | |
76 | + "@babel/helpers" "^7.14.8" | |
77 | + "@babel/parser" "^7.14.8" | |
78 | + "@babel/template" "^7.14.5" | |
79 | + "@babel/traverse" "^7.14.8" | |
80 | + "@babel/types" "^7.14.8" | |
81 | + convert-source-map "^1.7.0" | |
82 | + debug "^4.1.0" | |
83 | + gensync "^1.0.0-beta.2" | |
84 | + json5 "^2.1.2" | |
85 | + semver "^6.3.0" | |
86 | + source-map "^0.5.0" | |
87 | + | |
67 | 88 | "@babel/generator@^7.14.5", "@babel/generator@^7.7.2": |
68 | 89 | version "7.14.5" |
69 | 90 | resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.14.5.tgz#848d7b9f031caca9d0cd0af01b063f226f52d785" |
... | ... | @@ -73,6 +94,15 @@ |
73 | 94 | jsesc "^2.5.1" |
74 | 95 | source-map "^0.5.0" |
75 | 96 | |
97 | +"@babel/generator@^7.14.8": | |
98 | + version "7.14.8" | |
99 | + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.14.8.tgz#bf86fd6af96cf3b74395a8ca409515f89423e070" | |
100 | + integrity sha512-cYDUpvIzhBVnMzRoY1fkSEhK/HmwEVwlyULYgn/tMQYd6Obag3ylCjONle3gdErfXBW61SVTlR9QR7uWlgeIkg== | |
101 | + dependencies: | |
102 | + "@babel/types" "^7.14.8" | |
103 | + jsesc "^2.5.1" | |
104 | + source-map "^0.5.0" | |
105 | + | |
76 | 106 | "@babel/helper-annotate-as-pure@^7.14.5": |
77 | 107 | version "7.14.5" |
78 | 108 | resolved "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.14.5.tgz#7bf478ec3b71726d56a8ca5775b046fc29879e61" |
... | ... | @@ -190,6 +220,20 @@ |
190 | 220 | "@babel/traverse" "^7.14.5" |
191 | 221 | "@babel/types" "^7.14.5" |
192 | 222 | |
223 | +"@babel/helper-module-transforms@^7.14.8": | |
224 | + version "7.14.8" | |
225 | + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.14.8.tgz#d4279f7e3fd5f4d5d342d833af36d4dd87d7dc49" | |
226 | + integrity sha512-RyE+NFOjXn5A9YU1dkpeBaduagTlZ0+fccnIcAGbv1KGUlReBj7utF7oEth8IdIBQPcux0DDgW5MFBH2xu9KcA== | |
227 | + dependencies: | |
228 | + "@babel/helper-module-imports" "^7.14.5" | |
229 | + "@babel/helper-replace-supers" "^7.14.5" | |
230 | + "@babel/helper-simple-access" "^7.14.8" | |
231 | + "@babel/helper-split-export-declaration" "^7.14.5" | |
232 | + "@babel/helper-validator-identifier" "^7.14.8" | |
233 | + "@babel/template" "^7.14.5" | |
234 | + "@babel/traverse" "^7.14.8" | |
235 | + "@babel/types" "^7.14.8" | |
236 | + | |
193 | 237 | "@babel/helper-optimise-call-expression@^7.14.5": |
194 | 238 | version "7.14.5" |
195 | 239 | resolved "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.14.5.tgz#f27395a8619e0665b3f0364cddb41c25d71b499c" |
... | ... | @@ -228,6 +272,13 @@ |
228 | 272 | dependencies: |
229 | 273 | "@babel/types" "^7.14.5" |
230 | 274 | |
275 | +"@babel/helper-simple-access@^7.14.8": | |
276 | + version "7.14.8" | |
277 | + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.14.8.tgz#82e1fec0644a7e775c74d305f212c39f8fe73924" | |
278 | + integrity sha512-TrFN4RHh9gnWEU+s7JloIho2T76GPwRHhdzOWLqTrMnlas8T9O7ec+oEDNsRXndOmru9ymH9DFrEOxpzPoSbdg== | |
279 | + dependencies: | |
280 | + "@babel/types" "^7.14.8" | |
281 | + | |
231 | 282 | "@babel/helper-skip-transparent-expression-wrappers@^7.14.5": |
232 | 283 | version "7.14.5" |
233 | 284 | resolved "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.14.5.tgz#96f486ac050ca9f44b009fbe5b7d394cab3a0ee4" |
... | ... | @@ -247,6 +298,11 @@ |
247 | 298 | resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.5.tgz#d0f0e277c512e0c938277faa85a3968c9a44c0e8" |
248 | 299 | integrity sha512-5lsetuxCLilmVGyiLEfoHBRX8UCFD+1m2x3Rj97WrW3V7H3u4RWRXA4evMjImCsin2J2YT0QaVDGf+z8ondbAg== |
249 | 300 | |
301 | +"@babel/helper-validator-identifier@^7.14.8": | |
302 | + version "7.14.8" | |
303 | + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.8.tgz#32be33a756f29e278a0d644fa08a2c9e0f88a34c" | |
304 | + integrity sha512-ZGy6/XQjllhYQrNw/3zfWRwZCTVSiBLZ9DHVZxn9n2gip/7ab8mv2TWlKPIBk26RwedCBoWdjLmn+t9na2Gcow== | |
305 | + | |
250 | 306 | "@babel/helper-validator-option@^7.14.5": |
251 | 307 | version "7.14.5" |
252 | 308 | resolved "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz#6e72a1fff18d5dfcb878e1e62f1a021c4b72d5a3" |
... | ... | @@ -271,6 +327,15 @@ |
271 | 327 | "@babel/traverse" "^7.14.5" |
272 | 328 | "@babel/types" "^7.14.5" |
273 | 329 | |
330 | +"@babel/helpers@^7.14.8": | |
331 | + version "7.14.8" | |
332 | + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.14.8.tgz#839f88f463025886cff7f85a35297007e2da1b77" | |
333 | + integrity sha512-ZRDmI56pnV+p1dH6d+UN6GINGz7Krps3+270qqI9UJ4wxYThfAIcI5i7j5vXC4FJ3Wap+S9qcebxeYiqn87DZw== | |
334 | + dependencies: | |
335 | + "@babel/template" "^7.14.5" | |
336 | + "@babel/traverse" "^7.14.8" | |
337 | + "@babel/types" "^7.14.8" | |
338 | + | |
274 | 339 | "@babel/highlight@^7.10.4", "@babel/highlight@^7.14.5": |
275 | 340 | version "7.14.5" |
276 | 341 | resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz#6861a52f03966405001f6aa534a01a24d99e8cd9" |
... | ... | @@ -285,6 +350,11 @@ |
285 | 350 | resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.14.6.tgz#d85cc68ca3cac84eae384c06f032921f5227f4b2" |
286 | 351 | integrity sha512-oG0ej7efjEXxb4UgE+klVx+3j4MVo+A2vCzm7OUN4CLo6WhQ+vSOD2yJ8m7B+DghObxtLxt3EfgMWpq+AsWehQ== |
287 | 352 | |
353 | +"@babel/parser@^7.14.8": | |
354 | + version "7.14.8" | |
355 | + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.14.8.tgz#66fd41666b2d7b840bd5ace7f7416d5ac60208d4" | |
356 | + integrity sha512-syoCQFOoo/fzkWDeM0dLEZi5xqurb5vuyzwIMNZRNun+N/9A4cUZeQaE7dTrB8jGaKuJRBtEOajtnmw0I5hvvA== | |
357 | + | |
288 | 358 | "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.14.5": |
289 | 359 | version "7.14.5" |
290 | 360 | resolved "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5.tgz#4b467302e1548ed3b1be43beae2cc9cf45e0bb7e" |
... | ... | @@ -902,10 +972,10 @@ |
902 | 972 | dependencies: |
903 | 973 | regenerator-runtime "^0.13.4" |
904 | 974 | |
905 | -"@babel/standalone@^7.14.7": | |
906 | - version "7.14.7" | |
907 | - resolved "https://registry.npmjs.org/@babel/standalone/-/standalone-7.14.7.tgz#68635da005d6a34a0259599e0720d2e73133ecc3" | |
908 | - integrity sha512-7RlfMPR4604SbYpj5zvs2ZK587hVhixgU9Pd9Vs8lB8KYtT3U0apXSf0vZXhy8XRh549eUmJOHXhWKTO3ObzOQ== | |
975 | +"@babel/standalone@^7.14.8": | |
976 | + version "7.14.8" | |
977 | + resolved "https://registry.yarnpkg.com/@babel/standalone/-/standalone-7.14.8.tgz#4fbb0be8161dbdb30e68d903595fb6479ecf9209" | |
978 | + integrity sha512-5Aa1Bhis4oZD23iLJE5CDYHEs1zSC3ejppHE5aim0OWjGCWTa9Oq1PwopK4u1++ao6B6POW/PqNZjOCZNTSx0Q== | |
909 | 979 | |
910 | 980 | "@babel/template@^7.0.0", "@babel/template@^7.14.5", "@babel/template@^7.3.3": |
911 | 981 | version "7.14.5" |
... | ... | @@ -931,6 +1001,21 @@ |
931 | 1001 | debug "^4.1.0" |
932 | 1002 | globals "^11.1.0" |
933 | 1003 | |
1004 | +"@babel/traverse@^7.14.8": | |
1005 | + version "7.14.8" | |
1006 | + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.14.8.tgz#c0253f02677c5de1a8ff9df6b0aacbec7da1a8ce" | |
1007 | + integrity sha512-kexHhzCljJcFNn1KYAQ6A5wxMRzq9ebYpEDV4+WdNyr3i7O44tanbDOR/xjiG2F3sllan+LgwK+7OMk0EmydHg== | |
1008 | + dependencies: | |
1009 | + "@babel/code-frame" "^7.14.5" | |
1010 | + "@babel/generator" "^7.14.8" | |
1011 | + "@babel/helper-function-name" "^7.14.5" | |
1012 | + "@babel/helper-hoist-variables" "^7.14.5" | |
1013 | + "@babel/helper-split-export-declaration" "^7.14.5" | |
1014 | + "@babel/parser" "^7.14.8" | |
1015 | + "@babel/types" "^7.14.8" | |
1016 | + debug "^4.1.0" | |
1017 | + globals "^11.1.0" | |
1018 | + | |
934 | 1019 | "@babel/types@^7.0.0", "@babel/types@^7.12.0", "@babel/types@^7.13.0", "@babel/types@^7.14.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4", "@babel/types@^7.6.1", "@babel/types@^7.9.6": |
935 | 1020 | version "7.14.5" |
936 | 1021 | resolved "https://registry.npmjs.org/@babel/types/-/types-7.14.5.tgz#3bb997ba829a2104cedb20689c4a5b8121d383ff" |
... | ... | @@ -939,6 +1024,14 @@ |
939 | 1024 | "@babel/helper-validator-identifier" "^7.14.5" |
940 | 1025 | to-fast-properties "^2.0.0" |
941 | 1026 | |
1027 | +"@babel/types@^7.14.8": | |
1028 | + version "7.14.8" | |
1029 | + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.14.8.tgz#38109de8fcadc06415fbd9b74df0065d4d41c728" | |
1030 | + integrity sha512-iob4soQa7dZw8nodR/KlOQkPh9S4I8RwCxwRIFuiMRYjOzH/KJzdUfDgz6cGi5dDaclXF4P2PAhCdrBJNIg68Q== | |
1031 | + dependencies: | |
1032 | + "@babel/helper-validator-identifier" "^7.14.8" | |
1033 | + to-fast-properties "^2.0.0" | |
1034 | + | |
942 | 1035 | "@bcoe/v8-coverage@^0.2.3": |
943 | 1036 | version "0.2.3" |
944 | 1037 | resolved "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" |
... | ... | @@ -1234,61 +1327,61 @@ |
1234 | 1327 | resolved "https://registry.yarnpkg.com/@iconify/json/-/json-1.1.380.tgz#e61eac6429c2ed12ccd23d219e63668d5196601e" |
1235 | 1328 | integrity sha512-DKhpEjG8fc7VwrtoFStY+vHFgMKh8MSmzUG+1SfKjezBbPZI+bb2aVPNpLoHULkSoaV3eFVUw60/cte1iQCljw== |
1236 | 1329 | |
1237 | -"@intlify/core-base@9.1.6": | |
1238 | - version "9.1.6" | |
1239 | - resolved "https://registry.npmjs.org/@intlify/core-base/-/core-base-9.1.6.tgz#887fbeafe37d955bac50318f30ac589839f0d9fb" | |
1240 | - integrity sha512-d5GDPpsQbqPkisSJA5b6nJFEkalY/IHAd7vOLNd/Sj4YaNRzXtInu2FoqKiOv8e/lQnXGTpurdCZg5Jxq1Gsxw== | |
1330 | +"@intlify/core-base@9.1.7": | |
1331 | + version "9.1.7" | |
1332 | + resolved "https://registry.yarnpkg.com/@intlify/core-base/-/core-base-9.1.7.tgz#a454a492683690bc3d0abab82605ab5a23645bd0" | |
1333 | + integrity sha512-q1W2j81xbHyfKrNcca/CeJyf0Bcx4u9UDu05l7AaiJbqOseTme2o2I3wp1hDDCtmC7k7HgX0sAygyHNJH9swuQ== | |
1241 | 1334 | dependencies: |
1242 | - "@intlify/devtools-if" "9.1.6" | |
1243 | - "@intlify/message-compiler" "9.1.6" | |
1244 | - "@intlify/message-resolver" "9.1.6" | |
1245 | - "@intlify/runtime" "9.1.6" | |
1246 | - "@intlify/shared" "9.1.6" | |
1247 | - "@intlify/vue-devtools" "9.1.6" | |
1335 | + "@intlify/devtools-if" "9.1.7" | |
1336 | + "@intlify/message-compiler" "9.1.7" | |
1337 | + "@intlify/message-resolver" "9.1.7" | |
1338 | + "@intlify/runtime" "9.1.7" | |
1339 | + "@intlify/shared" "9.1.7" | |
1340 | + "@intlify/vue-devtools" "9.1.7" | |
1248 | 1341 | |
1249 | -"@intlify/devtools-if@9.1.6": | |
1250 | - version "9.1.6" | |
1251 | - resolved "https://registry.npmjs.org/@intlify/devtools-if/-/devtools-if-9.1.6.tgz#739b195e430e24fbf8f864ec8a51e243e3347385" | |
1252 | - integrity sha512-m8Api+kh+BtFa2FZ/JjIdr1ibsGGqBjdKCzWo5BZecEUxBquIeOQZwpokPh/0K5j+/PZleFXkVAMC5mNt+9WdA== | |
1342 | +"@intlify/devtools-if@9.1.7": | |
1343 | + version "9.1.7" | |
1344 | + resolved "https://registry.yarnpkg.com/@intlify/devtools-if/-/devtools-if-9.1.7.tgz#a5df0f33e06c3ead3e53b7f4d4b10a2d52309361" | |
1345 | + integrity sha512-/DcN5FUySSkQhDqx5y1RvxfuCXO3Ot/dUEIOs472qbM7Hyb2qif+eXCnwHBzlI4+wEfQVT6L0PiM1a7Er/ro9g== | |
1253 | 1346 | dependencies: |
1254 | - "@intlify/shared" "9.1.6" | |
1347 | + "@intlify/shared" "9.1.7" | |
1255 | 1348 | |
1256 | -"@intlify/message-compiler@9.1.6": | |
1257 | - version "9.1.6" | |
1258 | - resolved "https://registry.npmjs.org/@intlify/message-compiler/-/message-compiler-9.1.6.tgz#e3e99165c1e6ecc496211017799ae59e15b05a18" | |
1259 | - integrity sha512-DR8645VOrVK6x/8tkaCpHnckMAIcoOgeNS5j0wB12RfZoXYQp7vAXMaOP511KMll2mXCREgIB0ojpajiof7yzQ== | |
1349 | +"@intlify/message-compiler@9.1.7": | |
1350 | + version "9.1.7" | |
1351 | + resolved "https://registry.yarnpkg.com/@intlify/message-compiler/-/message-compiler-9.1.7.tgz#4663fcc2a190f3cc6970e12565c8d6f22beeb719" | |
1352 | + integrity sha512-JZNkAhr3O7tnbdbRBcpYfqr/Ai26WTzX0K/lV8Y1KVdOIj/dGiamaffdWUdFiDXUnbJRNbPiOaKxy7Pwip3KxQ== | |
1260 | 1353 | dependencies: |
1261 | - "@intlify/message-resolver" "9.1.6" | |
1262 | - "@intlify/shared" "9.1.6" | |
1354 | + "@intlify/message-resolver" "9.1.7" | |
1355 | + "@intlify/shared" "9.1.7" | |
1263 | 1356 | source-map "0.6.1" |
1264 | 1357 | |
1265 | -"@intlify/message-resolver@9.1.6": | |
1266 | - version "9.1.6" | |
1267 | - resolved "https://registry.npmjs.org/@intlify/message-resolver/-/message-resolver-9.1.6.tgz#d7493c9f326d5feb0cd8538a6735b648a91d8f2f" | |
1268 | - integrity sha512-UUnbawQa5U9sffd5wRIscqtyY1xWlwJbyfwCLPEWLvBhyAnCwPYlvaHGnnO0CSi0fzJTVwlV9DYzobh3agDeMA== | |
1358 | +"@intlify/message-resolver@9.1.7": | |
1359 | + version "9.1.7" | |
1360 | + resolved "https://registry.yarnpkg.com/@intlify/message-resolver/-/message-resolver-9.1.7.tgz#a95d13866c8de85784358039c8845668152e4162" | |
1361 | + integrity sha512-WTK+OaXJYjyquLGhuCyDvU2WHkG+kXzXeHagmVFHn+s118Jf2143zzkLLUrapP5CtZ/csuyjmYg7b3xQRQAmvw== | |
1269 | 1362 | |
1270 | -"@intlify/runtime@9.1.6": | |
1271 | - version "9.1.6" | |
1272 | - resolved "https://registry.npmjs.org/@intlify/runtime/-/runtime-9.1.6.tgz#bf1548d9034c80eef92b06b240cb347effb41f71" | |
1273 | - integrity sha512-U1QZ+TPf3kQQvWo4BA2mj3cHAxMRHXNTBhu2u+deh6ubTqXdZ19XGBTMSasrXG6RE+zSio9oM+ndoLja7JGtPg== | |
1363 | +"@intlify/runtime@9.1.7": | |
1364 | + version "9.1.7" | |
1365 | + resolved "https://registry.yarnpkg.com/@intlify/runtime/-/runtime-9.1.7.tgz#67e0d6b2fd85a5b0b301a151c2f436f93154c3c6" | |
1366 | + integrity sha512-QURPSlzhOVnRwS2XMGpCDsDkP42kfVBh94aAORxh/gVGzdgJip2vagrIFij/J69aEqdB476WJkMhVjP8VSHmiA== | |
1274 | 1367 | dependencies: |
1275 | - "@intlify/message-compiler" "9.1.6" | |
1276 | - "@intlify/message-resolver" "9.1.6" | |
1277 | - "@intlify/shared" "9.1.6" | |
1368 | + "@intlify/message-compiler" "9.1.7" | |
1369 | + "@intlify/message-resolver" "9.1.7" | |
1370 | + "@intlify/shared" "9.1.7" | |
1278 | 1371 | |
1279 | -"@intlify/shared@9.1.6": | |
1280 | - version "9.1.6" | |
1281 | - resolved "https://registry.npmjs.org/@intlify/shared/-/shared-9.1.6.tgz#d03c9301898d6ddffe2a54c03e7664174fbcdfd9" | |
1282 | - integrity sha512-6MtsKulyfZxdD7OuxjaODjj8QWoHCnLFAk4wkWiHqBCa6UCTC0qXjtEeZ1MxpQihvFmmJZauBUu25EvtngW5qQ== | |
1372 | +"@intlify/shared@9.1.7": | |
1373 | + version "9.1.7" | |
1374 | + resolved "https://registry.yarnpkg.com/@intlify/shared/-/shared-9.1.7.tgz#e7d8bc90cb59dc17dd7b4c85a73db16fcb7891fc" | |
1375 | + integrity sha512-zt0zlUdalumvT9AjQNxPXA36UgOndUyvBMplh8uRZU0fhWHAwhnJTcf0NaG9Qvr8I1n3HPSs96+kLb/YdwTavQ== | |
1283 | 1376 | |
1284 | -"@intlify/vue-devtools@9.1.6": | |
1285 | - version "9.1.6" | |
1286 | - resolved "https://registry.npmjs.org/@intlify/vue-devtools/-/vue-devtools-9.1.6.tgz#88faadf203951a2a10107440fa99b58f4637d40d" | |
1287 | - integrity sha512-UdNovg4OML9rIr1sOGZzTfNr1nUy4UQpDf5ni4dNC93T6FIkVJz0n1Np7Vp7e6gDjcmufRYcV99tEwjQSN9+5A== | |
1377 | +"@intlify/vue-devtools@9.1.7": | |
1378 | + version "9.1.7" | |
1379 | + resolved "https://registry.yarnpkg.com/@intlify/vue-devtools/-/vue-devtools-9.1.7.tgz#b08d39bb5f21ba9b1954eab9466e9408129425a7" | |
1380 | + integrity sha512-DI5Wc0aOiohtBUGUkKAcryCWbbuaO4/PK4Pa/LaNCsFNxbtgR5qkIDmhBv9xVPYGTUhySXxaDDAMvOpBjhPJjw== | |
1288 | 1381 | dependencies: |
1289 | - "@intlify/message-resolver" "9.1.6" | |
1290 | - "@intlify/runtime" "9.1.6" | |
1291 | - "@intlify/shared" "9.1.6" | |
1382 | + "@intlify/message-resolver" "9.1.7" | |
1383 | + "@intlify/runtime" "9.1.7" | |
1384 | + "@intlify/shared" "9.1.7" | |
1292 | 1385 | |
1293 | 1386 | "@istanbuljs/load-nyc-config@^1.0.0": |
1294 | 1387 | version "1.1.0" |
... | ... | @@ -1497,21 +1590,21 @@ |
1497 | 1590 | "@types/yargs" "^16.0.0" |
1498 | 1591 | chalk "^4.0.0" |
1499 | 1592 | |
1500 | -"@logicflow/core@^0.6.1": | |
1501 | - version "0.6.1" | |
1502 | - resolved "https://registry.yarnpkg.com/@logicflow/core/-/core-0.6.1.tgz#a3c7f713a187919320c9b1e661c227b4f1ee832e" | |
1503 | - integrity sha512-pJWkoB2fWFo6qVNdwQcnCyADR+wAFuQshOYaEX8ddLjXHrhUA0XVCNUoyCKajbLUqbhE+X9ho149tWoc0CCQaw== | |
1593 | +"@logicflow/core@^0.6.4": | |
1594 | + version "0.6.4" | |
1595 | + resolved "https://registry.yarnpkg.com/@logicflow/core/-/core-0.6.4.tgz#53312bd80b0bdb3b85e5a7dfb65d2d2a82c8c53c" | |
1596 | + integrity sha512-9R4t4S70jyfYtyJzaIvwRXqKTMk3CQBU8aik/aNvr1HkjWMqLpS4uLs0pFrCjkBWuYmrBAo0P8gGRkCURI0Sgw== | |
1504 | 1597 | dependencies: |
1505 | 1598 | "@types/mousetrap" "^1.6.4" |
1506 | 1599 | mousetrap "^1.6.5" |
1507 | 1600 | preact "^10.4.8" |
1508 | 1601 | |
1509 | -"@logicflow/extension@^0.6.1": | |
1510 | - version "0.6.1" | |
1511 | - resolved "https://registry.yarnpkg.com/@logicflow/extension/-/extension-0.6.1.tgz#c91a5e9103684c78b387ac2bab6a6e3c0485f997" | |
1512 | - integrity sha512-mC/xka9PCOkCbef20BK6CJooa8pBC4/6sUqc1WFPLAy6LlNoVdLoBwDSHglRzvb/lqre7mtDqoFvnSNvT18txg== | |
1602 | +"@logicflow/extension@^0.6.4": | |
1603 | + version "0.6.4" | |
1604 | + resolved "https://registry.yarnpkg.com/@logicflow/extension/-/extension-0.6.4.tgz#257f17ffce19250c5908a461e40b598b8048c84d" | |
1605 | + integrity sha512-mJ4VottjZVf811Yw2zHi0Xm5Nji6vIXp1S9rXOXEemKQPAj/PeTg16ChynETN0whV8qBwSS6+rDd0DEbKwDMzw== | |
1513 | 1606 | dependencies: |
1514 | - "@logicflow/core" "^0.6.1" | |
1607 | + "@logicflow/core" "^0.6.4" | |
1515 | 1608 | ids "^1.0.0" |
1516 | 1609 | preact "^10.4.8" |
1517 | 1610 | |
... | ... | @@ -1611,6 +1704,14 @@ |
1611 | 1704 | estree-walker "^2.0.1" |
1612 | 1705 | picomatch "^2.2.2" |
1613 | 1706 | |
1707 | +"@rollup/pluginutils@^4.1.1": | |
1708 | + version "4.1.1" | |
1709 | + resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-4.1.1.tgz#1d4da86dd4eded15656a57d933fda2b9a08d47ec" | |
1710 | + integrity sha512-clDjivHqWGXi7u+0d2r2sBi4Ie6VLEAzWMIkvJLnDmxoOhBYOTfzGbOQBA32THHm11/LiJbd01tJUpJsbshSWQ== | |
1711 | + dependencies: | |
1712 | + estree-walker "^2.0.1" | |
1713 | + picomatch "^2.2.2" | |
1714 | + | |
1614 | 1715 | "@simonwep/pickr@~1.8.0": |
1615 | 1716 | version "1.8.1" |
1616 | 1717 | resolved "https://registry.npmjs.org/@simonwep/pickr/-/pickr-1.8.1.tgz#e136cbd9c345ddbb7d71eb14af544c798165d495" |
... | ... | @@ -1919,10 +2020,10 @@ |
1919 | 2020 | resolved "https://registry.npmjs.org/@types/node/-/node-14.17.3.tgz#6d327abaa4be34a74e421ed6409a0ae2f47f4c3d" |
1920 | 2021 | integrity sha512-e6ZowgGJmTuXa3GyaPbTGxX17tnThl2aSSizrFthQ7m9uLGZBXiGhgE55cjRZTF5kjZvYn9EOPOMljdjwbflxw== |
1921 | 2022 | |
1922 | -"@types/node@^16.4.2": | |
1923 | - version "16.4.2" | |
1924 | - resolved "https://registry.yarnpkg.com/@types/node/-/node-16.4.2.tgz#0a95d7fd950cb1eaca0ce11031d72e8f680b775a" | |
1925 | - integrity sha512-vxyhOzFCm+jC/T5KugbVsYy1DbQM0h3NCFUrVbu0+pYa/nr+heeucpqxpa8j4pUmIGLPYzboY9zIdOF0niFAjQ== | |
2023 | +"@types/node@^16.4.6": | |
2024 | + version "16.4.6" | |
2025 | + resolved "https://registry.yarnpkg.com/@types/node/-/node-16.4.6.tgz#1734d119dfa8fede5606d35ae10f9fc9c84d889b" | |
2026 | + integrity sha512-FKyawK3o5KL16AwbeFajen8G4K3mmqUrQsehn5wNKs8IzlKHE8TfnSmILXVMVziAEcnB23u1RCFU1NT6hSyr7Q== | |
1926 | 2027 | |
1927 | 2028 | "@types/normalize-package-data@^2.4.0": |
1928 | 2029 | version "2.4.0" |
... | ... | @@ -2026,28 +2127,28 @@ |
2026 | 2127 | dependencies: |
2027 | 2128 | "@types/yargs-parser" "*" |
2028 | 2129 | |
2029 | -"@typescript-eslint/eslint-plugin@^4.28.4": | |
2030 | - version "4.28.4" | |
2031 | - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.28.4.tgz#e73c8cabbf3f08dee0e1bda65ed4e622ae8f8921" | |
2032 | - integrity sha512-s1oY4RmYDlWMlcV0kKPBaADn46JirZzvvH7c2CtAqxCY96S538JRBAzt83RrfkDheV/+G/vWNK0zek+8TB3Gmw== | |
2130 | +"@typescript-eslint/eslint-plugin@^4.28.5": | |
2131 | + version "4.28.5" | |
2132 | + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.28.5.tgz#8197f1473e7da8218c6a37ff308d695707835684" | |
2133 | + integrity sha512-m31cPEnbuCqXtEZQJOXAHsHvtoDi9OVaeL5wZnO2KZTnkvELk+u6J6jHg+NzvWQxk+87Zjbc4lJS4NHmgImz6Q== | |
2033 | 2134 | dependencies: |
2034 | - "@typescript-eslint/experimental-utils" "4.28.4" | |
2035 | - "@typescript-eslint/scope-manager" "4.28.4" | |
2135 | + "@typescript-eslint/experimental-utils" "4.28.5" | |
2136 | + "@typescript-eslint/scope-manager" "4.28.5" | |
2036 | 2137 | debug "^4.3.1" |
2037 | 2138 | functional-red-black-tree "^1.0.1" |
2038 | 2139 | regexpp "^3.1.0" |
2039 | 2140 | semver "^7.3.5" |
2040 | 2141 | tsutils "^3.21.0" |
2041 | 2142 | |
2042 | -"@typescript-eslint/experimental-utils@4.28.4": | |
2043 | - version "4.28.4" | |
2044 | - resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.28.4.tgz#9c70c35ebed087a5c70fb0ecd90979547b7fec96" | |
2045 | - integrity sha512-OglKWOQRWTCoqMSy6pm/kpinEIgdcXYceIcH3EKWUl4S8xhFtN34GQRaAvTIZB9DD94rW7d/U7tUg3SYeDFNHA== | |
2143 | +"@typescript-eslint/experimental-utils@4.28.5": | |
2144 | + version "4.28.5" | |
2145 | + resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.28.5.tgz#66c28bef115b417cf9d80812a713e0e46bb42a64" | |
2146 | + integrity sha512-bGPLCOJAa+j49hsynTaAtQIWg6uZd8VLiPcyDe4QPULsvQwLHGLSGKKcBN8/lBxIX14F74UEMK2zNDI8r0okwA== | |
2046 | 2147 | dependencies: |
2047 | 2148 | "@types/json-schema" "^7.0.7" |
2048 | - "@typescript-eslint/scope-manager" "4.28.4" | |
2049 | - "@typescript-eslint/types" "4.28.4" | |
2050 | - "@typescript-eslint/typescript-estree" "4.28.4" | |
2149 | + "@typescript-eslint/scope-manager" "4.28.5" | |
2150 | + "@typescript-eslint/types" "4.28.5" | |
2151 | + "@typescript-eslint/typescript-estree" "4.28.5" | |
2051 | 2152 | eslint-scope "^5.1.1" |
2052 | 2153 | eslint-utils "^3.0.0" |
2053 | 2154 | |
... | ... | @@ -2063,14 +2164,14 @@ |
2063 | 2164 | eslint-scope "^5.1.1" |
2064 | 2165 | eslint-utils "^3.0.0" |
2065 | 2166 | |
2066 | -"@typescript-eslint/parser@^4.28.4": | |
2067 | - version "4.28.4" | |
2068 | - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.28.4.tgz#bc462dc2779afeefdcf49082516afdc3e7b96fab" | |
2069 | - integrity sha512-4i0jq3C6n+og7/uCHiE6q5ssw87zVdpUj1k6VlVYMonE3ILdFApEzTWgppSRG4kVNB/5jxnH+gTeKLMNfUelQA== | |
2167 | +"@typescript-eslint/parser@^4.28.5": | |
2168 | + version "4.28.5" | |
2169 | + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.28.5.tgz#9c971668f86d1b5c552266c47788a87488a47d1c" | |
2170 | + integrity sha512-NPCOGhTnkXGMqTznqgVbA5LqVsnw+i3+XA1UKLnAb+MG1Y1rP4ZSK9GX0kJBmAZTMIktf+dTwXToT6kFwyimbw== | |
2070 | 2171 | dependencies: |
2071 | - "@typescript-eslint/scope-manager" "4.28.4" | |
2072 | - "@typescript-eslint/types" "4.28.4" | |
2073 | - "@typescript-eslint/typescript-estree" "4.28.4" | |
2172 | + "@typescript-eslint/scope-manager" "4.28.5" | |
2173 | + "@typescript-eslint/types" "4.28.5" | |
2174 | + "@typescript-eslint/typescript-estree" "4.28.5" | |
2074 | 2175 | debug "^4.3.1" |
2075 | 2176 | |
2076 | 2177 | "@typescript-eslint/scope-manager@4.27.0": |
... | ... | @@ -2081,23 +2182,23 @@ |
2081 | 2182 | "@typescript-eslint/types" "4.27.0" |
2082 | 2183 | "@typescript-eslint/visitor-keys" "4.27.0" |
2083 | 2184 | |
2084 | -"@typescript-eslint/scope-manager@4.28.4": | |
2085 | - version "4.28.4" | |
2086 | - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.28.4.tgz#bdbce9b6a644e34f767bd68bc17bb14353b9fe7f" | |
2087 | - integrity sha512-ZJBNs4usViOmlyFMt9X9l+X0WAFcDH7EdSArGqpldXu7aeZxDAuAzHiMAeI+JpSefY2INHrXeqnha39FVqXb8w== | |
2185 | +"@typescript-eslint/scope-manager@4.28.5": | |
2186 | + version "4.28.5" | |
2187 | + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.28.5.tgz#3a1b70c50c1535ac33322786ea99ebe403d3b923" | |
2188 | + integrity sha512-PHLq6n9nTMrLYcVcIZ7v0VY1X7dK309NM8ya9oL/yG8syFINIMHxyr2GzGoBYUdv3NUfCOqtuqps0ZmcgnZTfQ== | |
2088 | 2189 | dependencies: |
2089 | - "@typescript-eslint/types" "4.28.4" | |
2090 | - "@typescript-eslint/visitor-keys" "4.28.4" | |
2190 | + "@typescript-eslint/types" "4.28.5" | |
2191 | + "@typescript-eslint/visitor-keys" "4.28.5" | |
2091 | 2192 | |
2092 | 2193 | "@typescript-eslint/types@4.27.0": |
2093 | 2194 | version "4.27.0" |
2094 | 2195 | resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.27.0.tgz#712b408519ed699baff69086bc59cd2fc13df8d8" |
2095 | 2196 | integrity sha512-I4ps3SCPFCKclRcvnsVA/7sWzh7naaM/b4pBO2hVxnM3wrU51Lveybdw5WoIktU/V4KfXrTt94V9b065b/0+wA== |
2096 | 2197 | |
2097 | -"@typescript-eslint/types@4.28.4": | |
2098 | - version "4.28.4" | |
2099 | - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.28.4.tgz#41acbd79b5816b7c0dd7530a43d97d020d3aeb42" | |
2100 | - integrity sha512-3eap4QWxGqkYuEmVebUGULMskR6Cuoc/Wii0oSOddleP4EGx1tjLnZQ0ZP33YRoMDCs5O3j56RBV4g14T4jvww== | |
2198 | +"@typescript-eslint/types@4.28.5": | |
2199 | + version "4.28.5" | |
2200 | + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.28.5.tgz#d33edf8e429f0c0930a7c3d44e9b010354c422e9" | |
2201 | + integrity sha512-MruOu4ZaDOLOhw4f/6iudyks/obuvvZUAHBDSW80Trnc5+ovmViLT2ZMDXhUV66ozcl6z0LJfKs1Usldgi/WCA== | |
2101 | 2202 | |
2102 | 2203 | "@typescript-eslint/typescript-estree@4.27.0": |
2103 | 2204 | version "4.27.0" |
... | ... | @@ -2112,13 +2213,13 @@ |
2112 | 2213 | semver "^7.3.5" |
2113 | 2214 | tsutils "^3.21.0" |
2114 | 2215 | |
2115 | -"@typescript-eslint/typescript-estree@4.28.4": | |
2116 | - version "4.28.4" | |
2117 | - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.28.4.tgz#252e6863278dc0727244be9e371eb35241c46d00" | |
2118 | - integrity sha512-z7d8HK8XvCRyN2SNp+OXC2iZaF+O2BTquGhEYLKLx5k6p0r05ureUtgEfo5f6anLkhCxdHtCf6rPM1p4efHYDQ== | |
2216 | +"@typescript-eslint/typescript-estree@4.28.5": | |
2217 | + version "4.28.5" | |
2218 | + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.28.5.tgz#4906d343de693cf3d8dcc301383ed638e0441cd1" | |
2219 | + integrity sha512-FzJUKsBX8poCCdve7iV7ShirP8V+ys2t1fvamVeD1rWpiAnIm550a+BX/fmTHrjEpQJ7ZAn+Z7ZZwJjytk9rZw== | |
2119 | 2220 | dependencies: |
2120 | - "@typescript-eslint/types" "4.28.4" | |
2121 | - "@typescript-eslint/visitor-keys" "4.28.4" | |
2221 | + "@typescript-eslint/types" "4.28.5" | |
2222 | + "@typescript-eslint/visitor-keys" "4.28.5" | |
2122 | 2223 | debug "^4.3.1" |
2123 | 2224 | globby "^11.0.3" |
2124 | 2225 | is-glob "^4.0.1" |
... | ... | @@ -2133,41 +2234,41 @@ |
2133 | 2234 | "@typescript-eslint/types" "4.27.0" |
2134 | 2235 | eslint-visitor-keys "^2.0.0" |
2135 | 2236 | |
2136 | -"@typescript-eslint/visitor-keys@4.28.4": | |
2137 | - version "4.28.4" | |
2138 | - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.28.4.tgz#92dacfefccd6751cbb0a964f06683bfd72d0c4d3" | |
2139 | - integrity sha512-NIAXAdbz1XdOuzqkJHjNKXKj8QQ4cv5cxR/g0uQhCYf/6//XrmfpaYsM7PnBcNbfvTDLUkqQ5TPNm1sozDdTWg== | |
2237 | +"@typescript-eslint/visitor-keys@4.28.5": | |
2238 | + version "4.28.5" | |
2239 | + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.28.5.tgz#ffee2c602762ed6893405ee7c1144d9cc0a29675" | |
2240 | + integrity sha512-dva/7Rr+EkxNWdJWau26xU/0slnFlkh88v3TsyTgRS/IIYFi5iIfpCFM4ikw0vQTFUR9FYSSyqgK4w64gsgxhg== | |
2140 | 2241 | dependencies: |
2141 | - "@typescript-eslint/types" "4.28.4" | |
2242 | + "@typescript-eslint/types" "4.28.5" | |
2142 | 2243 | eslint-visitor-keys "^2.0.0" |
2143 | 2244 | |
2144 | -"@vitejs/plugin-legacy@^1.4.4": | |
2145 | - version "1.4.4" | |
2146 | - resolved "https://registry.yarnpkg.com/@vitejs/plugin-legacy/-/plugin-legacy-1.4.4.tgz#a13bcfdf053f219fd8db6199e0d19c87b3d12994" | |
2147 | - integrity sha512-pVYeQUDPG5InWwrTu7acy187WWjGonJnL/GMqMLmeKCFiwkZ6UcsoUjojiKmCUI0nAJTrrKH5lhjTqkccY9Iow== | |
2245 | +"@vitejs/plugin-legacy@^1.5.0": | |
2246 | + version "1.5.0" | |
2247 | + resolved "https://registry.yarnpkg.com/@vitejs/plugin-legacy/-/plugin-legacy-1.5.0.tgz#92893847fe1b20ebd83ff2371dfd8bc9658e6faa" | |
2248 | + integrity sha512-q3F6/AEn6LNvK0ERkn0t8gzXTwPdexW4FtsIeIsCxopj02EQLtKi3XfWukU9+kjU599QouyRihvr+C2qO+0Xeg== | |
2148 | 2249 | dependencies: |
2149 | - "@babel/standalone" "^7.14.7" | |
2250 | + "@babel/standalone" "^7.14.8" | |
2150 | 2251 | core-js "^3.15.2" |
2151 | 2252 | magic-string "^0.25.7" |
2152 | - regenerator-runtime "^0.13.7" | |
2253 | + regenerator-runtime "^0.13.9" | |
2153 | 2254 | systemjs "^6.10.2" |
2154 | 2255 | |
2155 | -"@vitejs/plugin-vue-jsx@^1.1.6": | |
2156 | - version "1.1.6" | |
2157 | - resolved "https://registry.npmjs.org/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-1.1.6.tgz#c9e7b63d1ebf537a24a0b4b3b31f4beb8055cef6" | |
2158 | - integrity sha512-1vKGALnBFt7hUIOgkC4ZAhTRgENpSgGBsdltJn3fPNcqrbrvR/HaRS5VThjCCoN69d0d+VlDXOTlWcfUpE3pfQ== | |
2256 | +"@vitejs/plugin-vue-jsx@^1.1.7": | |
2257 | + version "1.1.7" | |
2258 | + resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-1.1.7.tgz#3e0236a01d6b5f8010bd6bc5ffccdbe1f0fa50d5" | |
2259 | + integrity sha512-lomCrTZ/LXUk8L+1fBX4dpW+L/S7qY4+pzS5BRG2NuLpjo26Efh4yb8nDkYM7b8COS3ea7otis0SsqD8vGOSlg== | |
2159 | 2260 | dependencies: |
2160 | - "@babel/core" "^7.14.6" | |
2261 | + "@babel/core" "^7.14.8" | |
2161 | 2262 | "@babel/plugin-syntax-import-meta" "^7.10.4" |
2162 | 2263 | "@babel/plugin-transform-typescript" "^7.14.6" |
2163 | - "@rollup/pluginutils" "^4.1.0" | |
2264 | + "@rollup/pluginutils" "^4.1.1" | |
2164 | 2265 | "@vue/babel-plugin-jsx" "^1.0.6" |
2165 | 2266 | hash-sum "^2.0.0" |
2166 | 2267 | |
2167 | -"@vitejs/plugin-vue@^1.2.5": | |
2168 | - version "1.2.5" | |
2169 | - resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-1.2.5.tgz#ef7dc4a92e53fe866b54bcc1266788513262ac09" | |
2170 | - integrity sha512-GIR31mdXTEfvElmBUaRhDc5v7lfdkEdawWQqJRiaRL/5qKsH+xusukglkvJz5y7+c6dEpxgmvcATv2BbB7+fzQ== | |
2268 | +"@vitejs/plugin-vue@^1.3.0": | |
2269 | + version "1.3.0" | |
2270 | + resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-1.3.0.tgz#fc89a6c9b5a5157916afece4edc8fb55bf1bbc42" | |
2271 | + integrity sha512-wJvuJdTBjvucUX0vK4fuy60t+A9bJSZxc59vp1Y+8kiOd0NU5kFt4lay72gMWPeR+lSUjrTmGUq8Uzb99Jbw3A== | |
2171 | 2272 | |
2172 | 2273 | "@volar/code-gen@^0.26.6": |
2173 | 2274 | version "0.26.6" |
... | ... | @@ -2380,23 +2481,23 @@ |
2380 | 2481 | resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.2.0-beta.3.tgz#043c5a4d3bc9676508557e9199c625995cf14929" |
2381 | 2482 | integrity sha512-IzJBLNwh2CDTbVqQt979f5rczw9Uib97RkaGckmUGuC9bAG1sw/EXskrxc87p8xxaiI70LdVHnOhriprfKjmMw== |
2382 | 2483 | |
2383 | -"@vue/test-utils@^2.0.0-rc.10": | |
2384 | - version "2.0.0-rc.10" | |
2385 | - resolved "https://registry.npmjs.org/@vue/test-utils/-/test-utils-2.0.0-rc.10.tgz#9ed689cd7d5a1c9ef6693806010e464d2ecc13b2" | |
2386 | - integrity sha512-Z8jY+askU08svsI37NcJSLmWrfkZ/1ATA1DENWezRUX2uv3QyEj7idwx+rfeNSOrlNNBh4NTzypBKOUOklxBRA== | |
2484 | +"@vue/test-utils@^2.0.0-rc.12": | |
2485 | + version "2.0.0-rc.12" | |
2486 | + resolved "https://registry.yarnpkg.com/@vue/test-utils/-/test-utils-2.0.0-rc.12.tgz#716a84d915d6045640eeac416cc2a2acd514e06e" | |
2487 | + integrity sha512-G9BGRYlfwWjhorGjnpniC3hcYn1pCG2NqKG68fdUpk3DgWKordZ+BsEFD/SAmKdTZVMCY1huFwY3XAbPc+AgRw== | |
2387 | 2488 | |
2388 | -"@vueuse/core@^5.1.4": | |
2389 | - version "5.1.4" | |
2390 | - resolved "https://registry.yarnpkg.com/@vueuse/core/-/core-5.1.4.tgz#c590bd1ff5cdd3d2caa033b65ed8cb42fc12a534" | |
2391 | - integrity sha512-iuRhSaScI1GJS4N3CFPc1GajOr6F6J1Nng1I6ocNOjLx+evss6egImx9wnuX45fxqQstnh7Vfqe3FF7+0NgoWg== | |
2489 | +"@vueuse/core@^5.2.0": | |
2490 | + version "5.2.0" | |
2491 | + resolved "https://registry.yarnpkg.com/@vueuse/core/-/core-5.2.0.tgz#c2c0b89d9506fdfca41cd3056e38478226bc5e31" | |
2492 | + integrity sha512-IS2QnVZ4lTlRUtgPHJ4ttTatXGWRZuvj/GJDVp8FRlUjzKXD0YjZtx0280FCg7y3YejXV2QGhY+/YrXybMjpPw== | |
2392 | 2493 | dependencies: |
2393 | - "@vueuse/shared" "5.1.4" | |
2494 | + "@vueuse/shared" "5.2.0" | |
2394 | 2495 | vue-demi "*" |
2395 | 2496 | |
2396 | -"@vueuse/shared@5.1.4": | |
2397 | - version "5.1.4" | |
2398 | - resolved "https://registry.yarnpkg.com/@vueuse/shared/-/shared-5.1.4.tgz#35e3aa8ce7e52b447191915ee8b4afa481838c43" | |
2399 | - integrity sha512-C0xiMv8+sFI3WhXdlrcLKI4d4dFnouHe4Te51cxWgcmpW7S8eUiM8fXPaQVxUQZ4E9PCx3zEZpNpCLzQa+6Lag== | |
2497 | +"@vueuse/shared@5.2.0": | |
2498 | + version "5.2.0" | |
2499 | + resolved "https://registry.yarnpkg.com/@vueuse/shared/-/shared-5.2.0.tgz#894921cf5e5fc7f9afa7d7870800b0c9cd265e0c" | |
2500 | + integrity sha512-PD2PBaEcdl+pXXeKjhU+LZqQuA9xX/6mtVGIYG29xsjH7W3IjU164nwCAfDe2Lsy8rMaYmVqVSB6PHtiZZyDSg== | |
2400 | 2501 | dependencies: |
2401 | 2502 | vue-demi "*" |
2402 | 2503 | |
... | ... | @@ -8745,7 +8846,7 @@ pify@^4.0.1: |
8745 | 8846 | resolved "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" |
8746 | 8847 | integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== |
8747 | 8848 | |
8748 | -pinia@^2.0.0-beta.5: | |
8849 | +pinia@2.0.0-beta.5: | |
8749 | 8850 | version "2.0.0-beta.5" |
8750 | 8851 | resolved "https://registry.yarnpkg.com/pinia/-/pinia-2.0.0-beta.5.tgz#4825e66f939a50d6b11ffc4816b6e56b22fd0752" |
8751 | 8852 | integrity sha512-0XvufXNkEvl7Fk6wrg5DH/JYPihkoknet950SQNIlWxXpeI7omwR0H00QPIiEYkrdbsiHXJyvI2XndWGvD4v5A== |
... | ... | @@ -8983,7 +9084,7 @@ postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.2, postcss@^7.0.21, postcss@^7.0. |
8983 | 9084 | source-map "^0.6.1" |
8984 | 9085 | supports-color "^6.1.0" |
8985 | 9086 | |
8986 | -postcss@^8.1.10, postcss@^8.1.6, postcss@^8.2.1, postcss@^8.2.10, postcss@^8.3.5: | |
9087 | +postcss@^8.1.10, postcss@^8.1.6, postcss@^8.2.1, postcss@^8.2.10: | |
8987 | 9088 | version "8.3.5" |
8988 | 9089 | resolved "https://registry.npmjs.org/postcss/-/postcss-8.3.5.tgz#982216b113412bc20a86289e91eb994952a5b709" |
8989 | 9090 | integrity sha512-NxTuJocUhYGsMiMFHDUkmjSKT3EdH4/WbGF6GCi1NDGk+vbcUTun4fpbOqaPtD8IIsztA2ilZm2DhYCuyN58gA== |
... | ... | @@ -9493,11 +9594,16 @@ regenerate@^1.4.0: |
9493 | 9594 | resolved "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" |
9494 | 9595 | integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== |
9495 | 9596 | |
9496 | -regenerator-runtime@^0.13.4, regenerator-runtime@^0.13.7: | |
9597 | +regenerator-runtime@^0.13.4: | |
9497 | 9598 | version "0.13.7" |
9498 | 9599 | resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz#cac2dacc8a1ea675feaabaeb8ae833898ae46f55" |
9499 | 9600 | integrity sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew== |
9500 | 9601 | |
9602 | +regenerator-runtime@^0.13.9: | |
9603 | + version "0.13.9" | |
9604 | + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" | |
9605 | + integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== | |
9606 | + | |
9501 | 9607 | regenerator-transform@^0.14.2: |
9502 | 9608 | version "0.14.5" |
9503 | 9609 | resolved "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz#c98da154683671c9c4dcb16ece736517e1b7feb4" |
... | ... | @@ -9742,10 +9848,10 @@ rollup-plugin-visualizer@5.5.2: |
9742 | 9848 | source-map "^0.7.3" |
9743 | 9849 | yargs "^16.2.0" |
9744 | 9850 | |
9745 | -rollup@^2.38.5, rollup@^2.43.1, rollup@^2.51.2, rollup@^2.53.3: | |
9746 | - version "2.53.3" | |
9747 | - resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.53.3.tgz#14b0e57f0874d4ad23bdbb13050cf70bcd1eabf7" | |
9748 | - integrity sha512-79QIGP5DXz5ZHYnCPi3tLz+elOQi6gudp9YINdaJdjG0Yddubo6JRFUM//qCZ0Bap/GJrsUoEBVdSOc4AkMlRA== | |
9851 | +rollup@^2.38.5, rollup@^2.43.1, rollup@^2.51.2, rollup@^2.55.0: | |
9852 | + version "2.55.0" | |
9853 | + resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.55.0.tgz#e23bb51194d9706b4661515a14feeefaaa1830c2" | |
9854 | + integrity sha512-Atc3QqelKzrKwRkqnSdq0d2Mi8e0iGuL+kZebKMZ4ysyWHD5hw9VfVCAuODIW5837RENV8LXcbAEHurYf+ArvA== | |
9749 | 9855 | optionalDependencies: |
9750 | 9856 | fsevents "~2.3.2" |
9751 | 9857 | |
... | ... | @@ -11400,13 +11506,13 @@ vite-plugin-theme@^0.8.1: |
11400 | 11506 | esbuild-plugin-alias "^0.1.2" |
11401 | 11507 | tinycolor2 "^1.4.2" |
11402 | 11508 | |
11403 | -vite@2.4.3: | |
11404 | - version "2.4.3" | |
11405 | - resolved "https://registry.yarnpkg.com/vite/-/vite-2.4.3.tgz#fe4aa78e9dd7d36bcb12eccbd52313b26cfadf77" | |
11406 | - integrity sha512-iT6NPeiUUZ2FkzC3eazytOEMRaM4J+xgRQcNcpRcbmfYjakCFP4WKPJpeEz1U5JEKHAtwv3ZBQketQUFhFU3ng== | |
11509 | +vite@2.4.4: | |
11510 | + version "2.4.4" | |
11511 | + resolved "https://registry.yarnpkg.com/vite/-/vite-2.4.4.tgz#8c402a07ad45f168f6eb5428bead38f3e4363e47" | |
11512 | + integrity sha512-m1wK6pFJKmaYA6AeZIUXyiAgUAAJzVXhIMYCdZUpCaFMGps0v0IlNJtbmPvkUhVEyautalajmnW5X6NboUPsnw== | |
11407 | 11513 | dependencies: |
11408 | 11514 | esbuild "^0.12.8" |
11409 | - postcss "^8.3.5" | |
11515 | + postcss "^8.3.6" | |
11410 | 11516 | resolve "^1.20.0" |
11411 | 11517 | rollup "^2.38.5" |
11412 | 11518 | optionalDependencies: |
... | ... | @@ -11564,6 +11670,19 @@ vue-demi@*: |
11564 | 11670 | resolved "https://registry.npmjs.org/vue-demi/-/vue-demi-0.9.1.tgz#25d6e1ebd4d4010757ff3571e2bf6a1d7bf3de82" |
11565 | 11671 | integrity sha512-7s1lufRD2l369eFWPjgLvhqCRk0XzGWJsQc7K4q+0mZtixyGIvsK1Cg88P4NcaRIEiBuuN4q1NN4SZKFKwQswA== |
11566 | 11672 | |
11673 | +vue-eslint-parser@^7.10.0: | |
11674 | + version "7.10.0" | |
11675 | + resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-7.10.0.tgz#ea4e4b10fd10aa35c8a79ac783488d8abcd29be8" | |
11676 | + integrity sha512-7tc/ewS9Vq9Bn741pvpg8op2fWJPH3k32aL+jcIcWGCTzh/zXSdh7pZ5FV3W2aJancP9+ftPAv292zY5T5IPCg== | |
11677 | + dependencies: | |
11678 | + debug "^4.1.1" | |
11679 | + eslint-scope "^5.1.1" | |
11680 | + eslint-visitor-keys "^1.1.0" | |
11681 | + espree "^6.2.1" | |
11682 | + esquery "^1.4.0" | |
11683 | + lodash "^4.17.21" | |
11684 | + semver "^6.3.0" | |
11685 | + | |
11567 | 11686 | vue-eslint-parser@^7.9.0: |
11568 | 11687 | version "7.9.0" |
11569 | 11688 | resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-7.9.0.tgz#5eeedc71f22ebc7b18b957d1ab171acf29a41e64" |
... | ... | @@ -11577,14 +11696,14 @@ vue-eslint-parser@^7.9.0: |
11577 | 11696 | lodash "^4.17.21" |
11578 | 11697 | semver "^6.3.0" |
11579 | 11698 | |
11580 | -vue-i18n@9.1.6: | |
11581 | - version "9.1.6" | |
11582 | - resolved "https://registry.npmjs.org/vue-i18n/-/vue-i18n-9.1.6.tgz#4cf992e2aec5458bc19369973c96ea7d0f560321" | |
11583 | - integrity sha512-FEC4HZkTH6QRIu/A0wlo0VS/GH3w/fuCC6xfvoC8IyhhtbG9A+go9NfW+HZ1ZXdAcO4EWcVQi04M+iSwuxgixw== | |
11699 | +vue-i18n@9.1.7: | |
11700 | + version "9.1.7" | |
11701 | + resolved "https://registry.yarnpkg.com/vue-i18n/-/vue-i18n-9.1.7.tgz#6f28dd2135197066508e2e65ab204a019750d773" | |
11702 | + integrity sha512-ujuuDanoHqtEd4GejWrbG/fXE9nrP51ElsEGxp0WBHfv+/ki0/wyUqkO+4fLikki2obGtXdviTPH0VNpas5K6g== | |
11584 | 11703 | dependencies: |
11585 | - "@intlify/core-base" "9.1.6" | |
11586 | - "@intlify/shared" "9.1.6" | |
11587 | - "@intlify/vue-devtools" "9.1.6" | |
11704 | + "@intlify/core-base" "9.1.7" | |
11705 | + "@intlify/shared" "9.1.7" | |
11706 | + "@intlify/vue-devtools" "9.1.7" | |
11588 | 11707 | "@vue/devtools-api" "^6.0.0-beta.7" |
11589 | 11708 | |
11590 | 11709 | vue-json-pretty@^2.0.2: |
... | ... | @@ -11613,10 +11732,10 @@ vue-types@^3.0.0: |
11613 | 11732 | dependencies: |
11614 | 11733 | is-plain-object "3.0.1" |
11615 | 11734 | |
11616 | -vue-types@^4.0.0: | |
11617 | - version "4.0.0" | |
11618 | - resolved "https://registry.yarnpkg.com/vue-types/-/vue-types-4.0.0.tgz#da13ccca0f979d3cfd076ce3a2b7050a9627ed5a" | |
11619 | - integrity sha512-CGJ6br+FhK2OFgPzagVQxf6icQ63OVrOFjw+ekmb4bnTgn/FuKkjdlOqybOdq5aot7BF01yPoTczGD+fEMpKRw== | |
11735 | +vue-types@^4.0.1: | |
11736 | + version "4.0.1" | |
11737 | + resolved "https://registry.yarnpkg.com/vue-types/-/vue-types-4.0.1.tgz#023aff15ac890d7823aacdc23fc4ac8e6c37b290" | |
11738 | + integrity sha512-prSJ8K4hBmwdtG9cupF96wDKxtLZqjGpu6Q6R9yakcbRWz1Gf+c4oUMq7j6FwAf0TFkZ77FfU7wgdWLgyZ/9Bw== | |
11620 | 11739 | dependencies: |
11621 | 11740 | is-plain-object "5.0.0" |
11622 | 11741 | ... | ... |