Commit 8eba7fb52786d1977e4cb7b67673d74c91c5c827
1 parent
c1525252
fix(table): fix table jitter problem
Showing
5 changed files
with
328 additions
and
226 deletions
CHANGELOG.en_US.md
1 | +## 2.5.0(2021-06-20) | ||
2 | + | ||
3 | +## (Breaking changes) Breaking changes | ||
4 | + | ||
5 | +- Change the project `windicss` to `tailwindcss` to solve the memory overflow problem | ||
6 | + - There are currently incompatible areas of the project | ||
7 | + - The wording of `!xl:m-4` needs to be changed to `xl:!m-4`, note that only `!` is incompatible. If you don’t use it, you don’t need to change it. | ||
8 | + - The new features of `windicss` itself need to be adjusted, for example, `Attribute` mode is not compatible | ||
9 | + | ||
10 | +### ✨ Refactor | ||
11 | + | ||
12 | +- Remove `useExpose` and use `expose` provided by the component itself instead | ||
13 | + | ||
14 | +### ⚡ Performance Improvements | ||
15 | + | ||
16 | +- **Locale** merge multi-language files to reduce the number of files | ||
17 | +- **Utils** Mitt default export is changed from `Class` to `Function` | ||
18 | +- **Axios** `isTransformRequestResult` is renamed to `isTransformResponse` | ||
19 | + | ||
20 | +### ✨ Features | ||
21 | + | ||
22 | +- **CropperImage** `Cropper` Avatar cropping adds circular cropping function | ||
23 | +- **CropperAvatar** Added avatar upload component | ||
24 | +- **Drawer** `useDrawer` added `closeDrawer` function | ||
25 | +- **Preview** Added `createImgPreview` picture preview function | ||
26 | +- **Setup** New guide page example | ||
27 | +- **Tests** Add jest test suite, Vue component single test is not currently supported | ||
28 | +- **Axios** Added `authenticationScheme` configuration to specify the authentication scheme | ||
29 | +- **Setting** Added `sessionTimeoutProcessing` project configuration item, used to configure how to deal with session timeout | ||
30 | + | ||
31 | +### 🐛 Bug Fixes | ||
32 | + | ||
33 | +- **Modal** fix full screen height calculation error | ||
34 | +- **Modal** Fix the problem that the shutdown event is triggered multiple times | ||
35 | +- **PageWrapper** fix the height calculation problem | ||
36 | +- **FlowChart** Repair drag and drop menu missing | ||
37 | +- Fixed Iframe routing error in background mode | ||
38 | +- **PageWrapper** Fix the height calculation problem when footer and global footer are opened at the same time | ||
39 | +- **Menu** Fix the jitter problem of menu folding animation | ||
40 | +- **Store** fixed type error after pinia version upgrade | ||
41 | + | ||
1 | ## 2.4.2(2021-06-10) | 42 | ## 2.4.2(2021-06-10) |
2 | 43 | ||
3 | ### ✨ Refactor | 44 | ### ✨ Refactor |
CHANGELOG.zh_CN.md
package.json
@@ -41,7 +41,7 @@ | @@ -41,7 +41,7 @@ | ||
41 | "@zxcvbn-ts/core": "^0.3.0", | 41 | "@zxcvbn-ts/core": "^0.3.0", |
42 | "ant-design-vue": "2.1.6", | 42 | "ant-design-vue": "2.1.6", |
43 | "axios": "^0.21.1", | 43 | "axios": "^0.21.1", |
44 | - "codemirror": "^5.61.1", | 44 | + "codemirror": "^5.62.0", |
45 | "cropperjs": "^1.5.12", | 45 | "cropperjs": "^1.5.12", |
46 | "crypto-js": "^4.0.0", | 46 | "crypto-js": "^4.0.0", |
47 | "echarts": "^5.1.2", | 47 | "echarts": "^5.1.2", |
@@ -59,14 +59,14 @@ | @@ -59,14 +59,14 @@ | ||
59 | "vue": "3.0.11", | 59 | "vue": "3.0.11", |
60 | "vue-i18n": "9.1.6", | 60 | "vue-i18n": "9.1.6", |
61 | "vue-json-pretty": "^2.0.2", | 61 | "vue-json-pretty": "^2.0.2", |
62 | - "vue-router": "^4.0.9", | 62 | + "vue-router": "^4.0.10", |
63 | "vue-types": "^3.0.2", | 63 | "vue-types": "^3.0.2", |
64 | "xlsx": "^0.17.0" | 64 | "xlsx": "^0.17.0" |
65 | }, | 65 | }, |
66 | "devDependencies": { | 66 | "devDependencies": { |
67 | "@commitlint/cli": "^12.1.4", | 67 | "@commitlint/cli": "^12.1.4", |
68 | "@commitlint/config-conventional": "^12.1.4", | 68 | "@commitlint/config-conventional": "^12.1.4", |
69 | - "@iconify/json": "^1.1.358", | 69 | + "@iconify/json": "^1.1.359", |
70 | "@purge-icons/generated": "^0.7.0", | 70 | "@purge-icons/generated": "^0.7.0", |
71 | "@types/codemirror": "^5.60.0", | 71 | "@types/codemirror": "^5.60.0", |
72 | "@types/crypto-js": "^4.0.1", | 72 | "@types/crypto-js": "^4.0.1", |
@@ -81,13 +81,13 @@ | @@ -81,13 +81,13 @@ | ||
81 | "@types/qrcode": "^1.4.0", | 81 | "@types/qrcode": "^1.4.0", |
82 | "@types/qs": "^6.9.6", | 82 | "@types/qs": "^6.9.6", |
83 | "@types/sortablejs": "^1.10.6", | 83 | "@types/sortablejs": "^1.10.6", |
84 | - "@typescript-eslint/eslint-plugin": "^4.27.0", | ||
85 | - "@typescript-eslint/parser": "^4.27.0", | ||
86 | - "@vitejs/plugin-legacy": "^1.4.1", | 84 | + "@typescript-eslint/eslint-plugin": "^4.28.0", |
85 | + "@typescript-eslint/parser": "^4.28.0", | ||
86 | + "@vitejs/plugin-legacy": "^1.4.2", | ||
87 | "@vitejs/plugin-vue": "^1.2.3", | 87 | "@vitejs/plugin-vue": "^1.2.3", |
88 | "@vitejs/plugin-vue-jsx": "^1.1.5", | 88 | "@vitejs/plugin-vue-jsx": "^1.1.5", |
89 | "@vue/compiler-sfc": "3.0.11", | 89 | "@vue/compiler-sfc": "3.0.11", |
90 | - "@vue/test-utils": "^2.0.0-rc.7", | 90 | + "@vue/test-utils": "^2.0.0-rc.8", |
91 | "autoprefixer": "^10.2.6", | 91 | "autoprefixer": "^10.2.6", |
92 | "commitizen": "^4.2.4", | 92 | "commitizen": "^4.2.4", |
93 | "conventional-changelog-cli": "^2.1.1", | 93 | "conventional-changelog-cli": "^2.1.1", |
@@ -105,7 +105,7 @@ | @@ -105,7 +105,7 @@ | ||
105 | "husky": "^6.0.0", | 105 | "husky": "^6.0.0", |
106 | "inquirer": "^8.1.1", | 106 | "inquirer": "^8.1.1", |
107 | "is-ci": "^3.0.0", | 107 | "is-ci": "^3.0.0", |
108 | - "jest": "^27.0.4", | 108 | + "jest": "^27.0.5", |
109 | "less": "^4.1.1", | 109 | "less": "^4.1.1", |
110 | "lint-staged": "^11.0.0", | 110 | "lint-staged": "^11.0.0", |
111 | "npm-run-all": "^4.1.5", | 111 | "npm-run-all": "^4.1.5", |
@@ -133,12 +133,12 @@ | @@ -133,12 +133,12 @@ | ||
133 | "vite-plugin-svg-icons": "^0.7.1", | 133 | "vite-plugin-svg-icons": "^0.7.1", |
134 | "vite-plugin-theme": "^0.8.1", | 134 | "vite-plugin-theme": "^0.8.1", |
135 | "vue-eslint-parser": "^7.6.0", | 135 | "vue-eslint-parser": "^7.6.0", |
136 | - "vue-tsc": "^0.1.7" | 136 | + "vue-tsc": "^0.2.0" |
137 | }, | 137 | }, |
138 | "resolutions": { | 138 | "resolutions": { |
139 | "//": "Used to install imagemin dependencies, because imagemin may not be installed in China. If it is abroad, you can delete it", | 139 | "//": "Used to install imagemin dependencies, because imagemin may not be installed in China. If it is abroad, you can delete it", |
140 | "bin-wrapper": "npm:bin-wrapper-china", | 140 | "bin-wrapper": "npm:bin-wrapper-china", |
141 | - "rollup": "^2.52.1" | 141 | + "rollup": "^2.52.2" |
142 | }, | 142 | }, |
143 | "repository": { | 143 | "repository": { |
144 | "type": "git", | 144 | "type": "git", |
src/components/Form/src/hooks/useAdvanced.ts
@@ -51,7 +51,12 @@ export default function ({ | @@ -51,7 +51,12 @@ export default function ({ | ||
51 | const debounceUpdateAdvanced = useDebounceFn(updateAdvanced, 30); | 51 | const debounceUpdateAdvanced = useDebounceFn(updateAdvanced, 30); |
52 | 52 | ||
53 | watch( | 53 | watch( |
54 | - [() => unref(getSchema), () => advanceState.isAdvanced, () => unref(realWidthRef)], | 54 | + [ |
55 | + // TODO | ||
56 | + // () => unref(getSchema), | ||
57 | + () => advanceState.isAdvanced, | ||
58 | + () => unref(realWidthRef), | ||
59 | + ], | ||
55 | () => { | 60 | () => { |
56 | const { showAdvancedButton } = unref(getProps); | 61 | const { showAdvancedButton } = unref(getProps); |
57 | if (showAdvancedButton) { | 62 | if (showAdvancedButton) { |
yarn.lock
@@ -912,10 +912,10 @@ | @@ -912,10 +912,10 @@ | ||
912 | dependencies: | 912 | dependencies: |
913 | regenerator-runtime "^0.13.4" | 913 | regenerator-runtime "^0.13.4" |
914 | 914 | ||
915 | -"@babel/standalone@^7.13.12": | ||
916 | - version "7.14.6" | ||
917 | - resolved "https://registry.npmjs.org/@babel/standalone/-/standalone-7.14.6.tgz#9070bd3cc2bb997d42e14bdf3b0d24a11b00242b" | ||
918 | - integrity sha512-oAoSp82jhJFnXKybKTOj5QF04XxiDRyiiqrFToiU1udlBXuZoADlPmmnOcuqBrZxSNNUjzJIVK8vt838Qoqjxg== | 915 | +"@babel/standalone@^7.14.6": |
916 | + version "7.14.7" | ||
917 | + resolved "https://registry.yarnpkg.com/@babel/standalone/-/standalone-7.14.7.tgz#68635da005d6a34a0259599e0720d2e73133ecc3" | ||
918 | + integrity sha512-7RlfMPR4604SbYpj5zvs2ZK587hVhixgU9Pd9Vs8lB8KYtT3U0apXSf0vZXhy8XRh549eUmJOHXhWKTO3ObzOQ== | ||
919 | 919 | ||
920 | "@babel/template@^7.0.0", "@babel/template@^7.14.5", "@babel/template@^7.3.3": | 920 | "@babel/template@^7.0.0", "@babel/template@^7.14.5", "@babel/template@^7.3.3": |
921 | version "7.14.5" | 921 | version "7.14.5" |
@@ -1189,10 +1189,10 @@ | @@ -1189,10 +1189,10 @@ | ||
1189 | dependencies: | 1189 | dependencies: |
1190 | cross-fetch "^3.0.6" | 1190 | cross-fetch "^3.0.6" |
1191 | 1191 | ||
1192 | -"@iconify/json@^1.1.358": | ||
1193 | - version "1.1.358" | ||
1194 | - resolved "https://registry.yarnpkg.com/@iconify/json/-/json-1.1.358.tgz#173610937bca36f2ad194ed4adf2797a445e4852" | ||
1195 | - integrity sha512-FHNwGJiLHkYMxzxzdOAue1y3rizXkvlAqZesEo1gErJbad7Xri9uN2N2grT/GfHSKyhg5EiCMgV2E3VFV2wJMA== | 1192 | +"@iconify/json@^1.1.359": |
1193 | + version "1.1.359" | ||
1194 | + resolved "https://registry.yarnpkg.com/@iconify/json/-/json-1.1.359.tgz#283a7a1a8557f695d435f655458ad3e4ac785f76" | ||
1195 | + integrity sha512-3yewVDlIDMBkbl3vAGFMuqywj2MwnKrAuST9OsIqipQu5v0r1cpvwt5VvalY/RvYE80Z0hO4rOzwCIaDdMhgsw== | ||
1196 | 1196 | ||
1197 | "@intlify/core-base@9.1.6": | 1197 | "@intlify/core-base@9.1.6": |
1198 | version "9.1.6" | 1198 | version "9.1.6" |
@@ -1278,15 +1278,15 @@ | @@ -1278,15 +1278,15 @@ | ||
1278 | jest-util "^27.0.2" | 1278 | jest-util "^27.0.2" |
1279 | slash "^3.0.0" | 1279 | slash "^3.0.0" |
1280 | 1280 | ||
1281 | -"@jest/core@^27.0.4": | ||
1282 | - version "27.0.4" | ||
1283 | - resolved "https://registry.npmjs.org/@jest/core/-/core-27.0.4.tgz#679bf9ac07900da2ddbb9667bb1afa8029038f53" | ||
1284 | - integrity sha512-+dsmV8VUs1h/Szb+rEWk8xBM1fp1I///uFy9nk3wXGvRsF2lBp8EVPmtWc+QFRb3MY2b7u2HbkGF1fzoDzQTLA== | 1281 | +"@jest/core@^27.0.5": |
1282 | + version "27.0.5" | ||
1283 | + resolved "https://registry.yarnpkg.com/@jest/core/-/core-27.0.5.tgz#59e9e69e7374d65dbb22e3fc1bd52e80991eae72" | ||
1284 | + integrity sha512-g73//jF0VwsOIrWUC9Cqg03lU3QoAMFxVjsm6n6yNmwZcQPN/o8w+gLWODw5VfKNFZT38otXHWxc6b8eGDUpEA== | ||
1285 | dependencies: | 1285 | dependencies: |
1286 | "@jest/console" "^27.0.2" | 1286 | "@jest/console" "^27.0.2" |
1287 | - "@jest/reporters" "^27.0.4" | 1287 | + "@jest/reporters" "^27.0.5" |
1288 | "@jest/test-result" "^27.0.2" | 1288 | "@jest/test-result" "^27.0.2" |
1289 | - "@jest/transform" "^27.0.2" | 1289 | + "@jest/transform" "^27.0.5" |
1290 | "@jest/types" "^27.0.2" | 1290 | "@jest/types" "^27.0.2" |
1291 | "@types/node" "*" | 1291 | "@types/node" "*" |
1292 | ansi-escapes "^4.2.1" | 1292 | ansi-escapes "^4.2.1" |
@@ -1295,15 +1295,15 @@ | @@ -1295,15 +1295,15 @@ | ||
1295 | exit "^0.1.2" | 1295 | exit "^0.1.2" |
1296 | graceful-fs "^4.2.4" | 1296 | graceful-fs "^4.2.4" |
1297 | jest-changed-files "^27.0.2" | 1297 | jest-changed-files "^27.0.2" |
1298 | - jest-config "^27.0.4" | ||
1299 | - jest-haste-map "^27.0.2" | 1298 | + jest-config "^27.0.5" |
1299 | + jest-haste-map "^27.0.5" | ||
1300 | jest-message-util "^27.0.2" | 1300 | jest-message-util "^27.0.2" |
1301 | jest-regex-util "^27.0.1" | 1301 | jest-regex-util "^27.0.1" |
1302 | - jest-resolve "^27.0.4" | ||
1303 | - jest-resolve-dependencies "^27.0.4" | ||
1304 | - jest-runner "^27.0.4" | ||
1305 | - jest-runtime "^27.0.4" | ||
1306 | - jest-snapshot "^27.0.4" | 1302 | + jest-resolve "^27.0.5" |
1303 | + jest-resolve-dependencies "^27.0.5" | ||
1304 | + jest-runner "^27.0.5" | ||
1305 | + jest-runtime "^27.0.5" | ||
1306 | + jest-snapshot "^27.0.5" | ||
1307 | jest-util "^27.0.2" | 1307 | jest-util "^27.0.2" |
1308 | jest-validate "^27.0.2" | 1308 | jest-validate "^27.0.2" |
1309 | jest-watcher "^27.0.2" | 1309 | jest-watcher "^27.0.2" |
@@ -1313,20 +1313,20 @@ | @@ -1313,20 +1313,20 @@ | ||
1313 | slash "^3.0.0" | 1313 | slash "^3.0.0" |
1314 | strip-ansi "^6.0.0" | 1314 | strip-ansi "^6.0.0" |
1315 | 1315 | ||
1316 | -"@jest/environment@^27.0.3": | ||
1317 | - version "27.0.3" | ||
1318 | - resolved "https://registry.npmjs.org/@jest/environment/-/environment-27.0.3.tgz#68769b1dfdd213e3456169d64fbe9bd63a5fda92" | ||
1319 | - integrity sha512-pN9m7fbKsop5vc3FOfH8NF7CKKdRbEZzcxfIo1n2TT6ucKWLFq0P6gCJH0GpnQp036++yY9utHOxpeT1WnkWTA== | 1316 | +"@jest/environment@^27.0.5": |
1317 | + version "27.0.5" | ||
1318 | + resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-27.0.5.tgz#a294ad4acda2e250f789fb98dc667aad33d3adc9" | ||
1319 | + integrity sha512-IAkJPOT7bqn0GiX5LPio6/e1YpcmLbrd8O5EFYpAOZ6V+9xJDsXjdgN2vgv9WOKIs/uA1kf5WeD96HhlBYO+FA== | ||
1320 | dependencies: | 1320 | dependencies: |
1321 | - "@jest/fake-timers" "^27.0.3" | 1321 | + "@jest/fake-timers" "^27.0.5" |
1322 | "@jest/types" "^27.0.2" | 1322 | "@jest/types" "^27.0.2" |
1323 | "@types/node" "*" | 1323 | "@types/node" "*" |
1324 | jest-mock "^27.0.3" | 1324 | jest-mock "^27.0.3" |
1325 | 1325 | ||
1326 | -"@jest/fake-timers@^27.0.3": | ||
1327 | - version "27.0.3" | ||
1328 | - resolved "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.0.3.tgz#9899ba6304cc636734c74478df502e18136461dd" | ||
1329 | - integrity sha512-fQ+UCKRIYKvTCEOyKPnaPnomLATIhMnHC/xPZ7yT1Uldp7yMgMxoYIFidDbpSTgB79+/U+FgfoD30c6wg3IUjA== | 1326 | +"@jest/fake-timers@^27.0.5": |
1327 | + version "27.0.5" | ||
1328 | + resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-27.0.5.tgz#304d5aedadf4c75cff3696995460b39d6c6e72f6" | ||
1329 | + integrity sha512-d6Tyf7iDoKqeUdwUKrOBV/GvEZRF67m7lpuWI0+SCD9D3aaejiOQZxAOxwH2EH/W18gnfYaBPLi0VeTGBHtQBg== | ||
1330 | dependencies: | 1330 | dependencies: |
1331 | "@jest/types" "^27.0.2" | 1331 | "@jest/types" "^27.0.2" |
1332 | "@sinonjs/fake-timers" "^7.0.2" | 1332 | "@sinonjs/fake-timers" "^7.0.2" |
@@ -1335,24 +1335,24 @@ | @@ -1335,24 +1335,24 @@ | ||
1335 | jest-mock "^27.0.3" | 1335 | jest-mock "^27.0.3" |
1336 | jest-util "^27.0.2" | 1336 | jest-util "^27.0.2" |
1337 | 1337 | ||
1338 | -"@jest/globals@^27.0.3": | ||
1339 | - version "27.0.3" | ||
1340 | - resolved "https://registry.npmjs.org/@jest/globals/-/globals-27.0.3.tgz#1cf8933b7791bba0b99305cbf39fd4d2e3fe4060" | ||
1341 | - integrity sha512-OzsIuf7uf+QalqAGbjClyezzEcLQkdZ+7PejUrZgDs+okdAK8GwRCGcYCirHvhMBBQh60Jr3NlIGbn/KBPQLEQ== | 1338 | +"@jest/globals@^27.0.5": |
1339 | + version "27.0.5" | ||
1340 | + resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-27.0.5.tgz#f63b8bfa6ea3716f8df50f6a604b5c15b36ffd20" | ||
1341 | + integrity sha512-qqKyjDXUaZwDuccpbMMKCCMBftvrbXzigtIsikAH/9ca+kaae8InP2MDf+Y/PdCSMuAsSpHS6q6M25irBBUh+Q== | ||
1342 | dependencies: | 1342 | dependencies: |
1343 | - "@jest/environment" "^27.0.3" | 1343 | + "@jest/environment" "^27.0.5" |
1344 | "@jest/types" "^27.0.2" | 1344 | "@jest/types" "^27.0.2" |
1345 | expect "^27.0.2" | 1345 | expect "^27.0.2" |
1346 | 1346 | ||
1347 | -"@jest/reporters@^27.0.4": | ||
1348 | - version "27.0.4" | ||
1349 | - resolved "https://registry.npmjs.org/@jest/reporters/-/reporters-27.0.4.tgz#95609b1be97afb80d55d8aa3d7c3179c15810e65" | ||
1350 | - integrity sha512-Xa90Nm3JnV0xCe4M6A10M9WuN9krb+WFKxV1A98Y4ePCw40n++r7uxFUNU7DT1i9Behj7fjrAIju9oU0t1QtCg== | 1347 | +"@jest/reporters@^27.0.5": |
1348 | + version "27.0.5" | ||
1349 | + resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-27.0.5.tgz#cd730b77d9667b8ff700ad66d4edc293bb09716a" | ||
1350 | + integrity sha512-4uNg5+0eIfRafnpgu3jCZws3NNcFzhu5JdRd1mKQ4/53+vkIqwB6vfZ4gn5BdGqOaLtYhlOsPaL5ATkKzyBrJw== | ||
1351 | dependencies: | 1351 | dependencies: |
1352 | "@bcoe/v8-coverage" "^0.2.3" | 1352 | "@bcoe/v8-coverage" "^0.2.3" |
1353 | "@jest/console" "^27.0.2" | 1353 | "@jest/console" "^27.0.2" |
1354 | "@jest/test-result" "^27.0.2" | 1354 | "@jest/test-result" "^27.0.2" |
1355 | - "@jest/transform" "^27.0.2" | 1355 | + "@jest/transform" "^27.0.5" |
1356 | "@jest/types" "^27.0.2" | 1356 | "@jest/types" "^27.0.2" |
1357 | chalk "^4.0.0" | 1357 | chalk "^4.0.0" |
1358 | collect-v8-coverage "^1.0.0" | 1358 | collect-v8-coverage "^1.0.0" |
@@ -1364,15 +1364,15 @@ | @@ -1364,15 +1364,15 @@ | ||
1364 | istanbul-lib-report "^3.0.0" | 1364 | istanbul-lib-report "^3.0.0" |
1365 | istanbul-lib-source-maps "^4.0.0" | 1365 | istanbul-lib-source-maps "^4.0.0" |
1366 | istanbul-reports "^3.0.2" | 1366 | istanbul-reports "^3.0.2" |
1367 | - jest-haste-map "^27.0.2" | ||
1368 | - jest-resolve "^27.0.4" | 1367 | + jest-haste-map "^27.0.5" |
1368 | + jest-resolve "^27.0.5" | ||
1369 | jest-util "^27.0.2" | 1369 | jest-util "^27.0.2" |
1370 | jest-worker "^27.0.2" | 1370 | jest-worker "^27.0.2" |
1371 | slash "^3.0.0" | 1371 | slash "^3.0.0" |
1372 | source-map "^0.6.0" | 1372 | source-map "^0.6.0" |
1373 | string-length "^4.0.1" | 1373 | string-length "^4.0.1" |
1374 | terminal-link "^2.0.0" | 1374 | terminal-link "^2.0.0" |
1375 | - v8-to-istanbul "^7.0.0" | 1375 | + v8-to-istanbul "^8.0.0" |
1376 | 1376 | ||
1377 | "@jest/source-map@^27.0.1": | 1377 | "@jest/source-map@^27.0.1": |
1378 | version "27.0.1" | 1378 | version "27.0.1" |
@@ -1393,20 +1393,20 @@ | @@ -1393,20 +1393,20 @@ | ||
1393 | "@types/istanbul-lib-coverage" "^2.0.0" | 1393 | "@types/istanbul-lib-coverage" "^2.0.0" |
1394 | collect-v8-coverage "^1.0.0" | 1394 | collect-v8-coverage "^1.0.0" |
1395 | 1395 | ||
1396 | -"@jest/test-sequencer@^27.0.4": | ||
1397 | - version "27.0.4" | ||
1398 | - resolved "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.0.4.tgz#976493b277594d81e589896f0ed21f198308928a" | ||
1399 | - integrity sha512-6UFEVwdmxYdyNffBxVVZxmXEdBE4riSddXYSnFNH0ELFQFk/bvagizim8WfgJTqF4EKd+j1yFxvhb8BMHfOjSQ== | 1396 | +"@jest/test-sequencer@^27.0.5": |
1397 | + version "27.0.5" | ||
1398 | + resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-27.0.5.tgz#c58b21db49afc36c0e3921d7ddf1fb7954abfded" | ||
1399 | + integrity sha512-opztnGs+cXzZ5txFG2+omBaV5ge/0yuJNKbhE3DREMiXE0YxBuzyEa6pNv3kk2JuucIlH2Xvgmn9kEEHSNt/SA== | ||
1400 | dependencies: | 1400 | dependencies: |
1401 | "@jest/test-result" "^27.0.2" | 1401 | "@jest/test-result" "^27.0.2" |
1402 | graceful-fs "^4.2.4" | 1402 | graceful-fs "^4.2.4" |
1403 | - jest-haste-map "^27.0.2" | ||
1404 | - jest-runtime "^27.0.4" | 1403 | + jest-haste-map "^27.0.5" |
1404 | + jest-runtime "^27.0.5" | ||
1405 | 1405 | ||
1406 | -"@jest/transform@^27.0.2": | ||
1407 | - version "27.0.2" | ||
1408 | - resolved "https://registry.npmjs.org/@jest/transform/-/transform-27.0.2.tgz#b073b7c589e3f4b842102468875def2bb722d6b5" | ||
1409 | - integrity sha512-H8sqKlgtDfVog/s9I4GG2XMbi4Ar7RBxjsKQDUhn2XHAi3NG+GoQwWMER+YfantzExbjNqQvqBHzo/G2pfTiPw== | 1406 | +"@jest/transform@^27.0.5": |
1407 | + version "27.0.5" | ||
1408 | + resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-27.0.5.tgz#2dcb78953708af713941ac845b06078bc74ed873" | ||
1409 | + integrity sha512-lBD6OwKXSc6JJECBNk4mVxtSVuJSBsQrJ9WCBisfJs7EZuYq4K6vM9HmoB7hmPiLIDGeyaerw3feBV/bC4z8tg== | ||
1410 | dependencies: | 1410 | dependencies: |
1411 | "@babel/core" "^7.1.0" | 1411 | "@babel/core" "^7.1.0" |
1412 | "@jest/types" "^27.0.2" | 1412 | "@jest/types" "^27.0.2" |
@@ -1415,7 +1415,7 @@ | @@ -1415,7 +1415,7 @@ | ||
1415 | convert-source-map "^1.4.0" | 1415 | convert-source-map "^1.4.0" |
1416 | fast-json-stable-stringify "^2.0.0" | 1416 | fast-json-stable-stringify "^2.0.0" |
1417 | graceful-fs "^4.2.4" | 1417 | graceful-fs "^4.2.4" |
1418 | - jest-haste-map "^27.0.2" | 1418 | + jest-haste-map "^27.0.5" |
1419 | jest-regex-util "^27.0.1" | 1419 | jest-regex-util "^27.0.1" |
1420 | jest-util "^27.0.2" | 1420 | jest-util "^27.0.2" |
1421 | micromatch "^4.0.4" | 1421 | micromatch "^4.0.4" |
@@ -2113,21 +2113,32 @@ | @@ -2113,21 +2113,32 @@ | ||
2113 | dependencies: | 2113 | dependencies: |
2114 | "@types/yargs-parser" "*" | 2114 | "@types/yargs-parser" "*" |
2115 | 2115 | ||
2116 | -"@typescript-eslint/eslint-plugin@^4.27.0": | ||
2117 | - version "4.27.0" | ||
2118 | - resolved "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.27.0.tgz#0b7fc974e8bc9b2b5eb98ed51427b0be529b4ad0" | ||
2119 | - integrity sha512-DsLqxeUfLVNp3AO7PC3JyaddmEHTtI9qTSAs+RB6ja27QvIM0TA8Cizn1qcS6vOu+WDLFJzkwkgweiyFhssDdQ== | 2116 | +"@typescript-eslint/eslint-plugin@^4.28.0": |
2117 | + version "4.28.0" | ||
2118 | + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.28.0.tgz#1a66f03b264844387beb7dc85e1f1d403bd1803f" | ||
2119 | + integrity sha512-KcF6p3zWhf1f8xO84tuBailV5cN92vhS+VT7UJsPzGBm9VnQqfI9AsiMUFUCYHTYPg1uCCo+HyiDnpDuvkAMfQ== | ||
2120 | dependencies: | 2120 | dependencies: |
2121 | - "@typescript-eslint/experimental-utils" "4.27.0" | ||
2122 | - "@typescript-eslint/scope-manager" "4.27.0" | 2121 | + "@typescript-eslint/experimental-utils" "4.28.0" |
2122 | + "@typescript-eslint/scope-manager" "4.28.0" | ||
2123 | debug "^4.3.1" | 2123 | debug "^4.3.1" |
2124 | functional-red-black-tree "^1.0.1" | 2124 | functional-red-black-tree "^1.0.1" |
2125 | - lodash "^4.17.21" | ||
2126 | regexpp "^3.1.0" | 2125 | regexpp "^3.1.0" |
2127 | semver "^7.3.5" | 2126 | semver "^7.3.5" |
2128 | tsutils "^3.21.0" | 2127 | tsutils "^3.21.0" |
2129 | 2128 | ||
2130 | -"@typescript-eslint/experimental-utils@4.27.0", "@typescript-eslint/experimental-utils@^4.0.1": | 2129 | +"@typescript-eslint/experimental-utils@4.28.0": |
2130 | + version "4.28.0" | ||
2131 | + resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.28.0.tgz#13167ed991320684bdc23588135ae62115b30ee0" | ||
2132 | + integrity sha512-9XD9s7mt3QWMk82GoyUpc/Ji03vz4T5AYlHF9DcoFNfJ/y3UAclRsfGiE2gLfXtyC+JRA3trR7cR296TEb1oiQ== | ||
2133 | + dependencies: | ||
2134 | + "@types/json-schema" "^7.0.7" | ||
2135 | + "@typescript-eslint/scope-manager" "4.28.0" | ||
2136 | + "@typescript-eslint/types" "4.28.0" | ||
2137 | + "@typescript-eslint/typescript-estree" "4.28.0" | ||
2138 | + eslint-scope "^5.1.1" | ||
2139 | + eslint-utils "^3.0.0" | ||
2140 | + | ||
2141 | +"@typescript-eslint/experimental-utils@^4.0.1": | ||
2131 | version "4.27.0" | 2142 | version "4.27.0" |
2132 | resolved "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.27.0.tgz#78192a616472d199f084eab8f10f962c0757cd1c" | 2143 | resolved "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.27.0.tgz#78192a616472d199f084eab8f10f962c0757cd1c" |
2133 | integrity sha512-n5NlbnmzT2MXlyT+Y0Jf0gsmAQzCnQSWXKy4RGSXVStjDvS5we9IWbh7qRVKdGcxT0WYlgcCYUK/HRg7xFhvjQ== | 2144 | integrity sha512-n5NlbnmzT2MXlyT+Y0Jf0gsmAQzCnQSWXKy4RGSXVStjDvS5we9IWbh7qRVKdGcxT0WYlgcCYUK/HRg7xFhvjQ== |
@@ -2139,14 +2150,14 @@ | @@ -2139,14 +2150,14 @@ | ||
2139 | eslint-scope "^5.1.1" | 2150 | eslint-scope "^5.1.1" |
2140 | eslint-utils "^3.0.0" | 2151 | eslint-utils "^3.0.0" |
2141 | 2152 | ||
2142 | -"@typescript-eslint/parser@^4.27.0": | ||
2143 | - version "4.27.0" | ||
2144 | - resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.27.0.tgz#85447e573364bce4c46c7f64abaa4985aadf5a94" | ||
2145 | - integrity sha512-XpbxL+M+gClmJcJ5kHnUpBGmlGdgNvy6cehgR6ufyxkEJMGP25tZKCaKyC0W/JVpuhU3VU1RBn7SYUPKSMqQvQ== | 2153 | +"@typescript-eslint/parser@^4.28.0": |
2154 | + version "4.28.0" | ||
2155 | + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.28.0.tgz#2404c16751a28616ef3abab77c8e51d680a12caa" | ||
2156 | + integrity sha512-7x4D22oPY8fDaOCvkuXtYYTQ6mTMmkivwEzS+7iml9F9VkHGbbZ3x4fHRwxAb5KeuSkLqfnYjs46tGx2Nour4A== | ||
2146 | dependencies: | 2157 | dependencies: |
2147 | - "@typescript-eslint/scope-manager" "4.27.0" | ||
2148 | - "@typescript-eslint/types" "4.27.0" | ||
2149 | - "@typescript-eslint/typescript-estree" "4.27.0" | 2158 | + "@typescript-eslint/scope-manager" "4.28.0" |
2159 | + "@typescript-eslint/types" "4.28.0" | ||
2160 | + "@typescript-eslint/typescript-estree" "4.28.0" | ||
2150 | debug "^4.3.1" | 2161 | debug "^4.3.1" |
2151 | 2162 | ||
2152 | "@typescript-eslint/scope-manager@4.27.0": | 2163 | "@typescript-eslint/scope-manager@4.27.0": |
@@ -2157,11 +2168,24 @@ | @@ -2157,11 +2168,24 @@ | ||
2157 | "@typescript-eslint/types" "4.27.0" | 2168 | "@typescript-eslint/types" "4.27.0" |
2158 | "@typescript-eslint/visitor-keys" "4.27.0" | 2169 | "@typescript-eslint/visitor-keys" "4.27.0" |
2159 | 2170 | ||
2171 | +"@typescript-eslint/scope-manager@4.28.0": | ||
2172 | + version "4.28.0" | ||
2173 | + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.28.0.tgz#6a3009d2ab64a30fc8a1e257a1a320067f36a0ce" | ||
2174 | + integrity sha512-eCALCeScs5P/EYjwo6se9bdjtrh8ByWjtHzOkC4Tia6QQWtQr3PHovxh3TdYTuFcurkYI4rmFsRFpucADIkseg== | ||
2175 | + dependencies: | ||
2176 | + "@typescript-eslint/types" "4.28.0" | ||
2177 | + "@typescript-eslint/visitor-keys" "4.28.0" | ||
2178 | + | ||
2160 | "@typescript-eslint/types@4.27.0": | 2179 | "@typescript-eslint/types@4.27.0": |
2161 | version "4.27.0" | 2180 | version "4.27.0" |
2162 | resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.27.0.tgz#712b408519ed699baff69086bc59cd2fc13df8d8" | 2181 | resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.27.0.tgz#712b408519ed699baff69086bc59cd2fc13df8d8" |
2163 | integrity sha512-I4ps3SCPFCKclRcvnsVA/7sWzh7naaM/b4pBO2hVxnM3wrU51Lveybdw5WoIktU/V4KfXrTt94V9b065b/0+wA== | 2182 | integrity sha512-I4ps3SCPFCKclRcvnsVA/7sWzh7naaM/b4pBO2hVxnM3wrU51Lveybdw5WoIktU/V4KfXrTt94V9b065b/0+wA== |
2164 | 2183 | ||
2184 | +"@typescript-eslint/types@4.28.0": | ||
2185 | + version "4.28.0" | ||
2186 | + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.28.0.tgz#a33504e1ce7ac51fc39035f5fe6f15079d4dafb0" | ||
2187 | + integrity sha512-p16xMNKKoiJCVZY5PW/AfILw2xe1LfruTcfAKBj3a+wgNYP5I9ZEKNDOItoRt53p4EiPV6iRSICy8EPanG9ZVA== | ||
2188 | + | ||
2165 | "@typescript-eslint/typescript-estree@4.27.0": | 2189 | "@typescript-eslint/typescript-estree@4.27.0": |
2166 | version "4.27.0" | 2190 | version "4.27.0" |
2167 | resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.27.0.tgz#189a7b9f1d0717d5cccdcc17247692dedf7a09da" | 2191 | resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.27.0.tgz#189a7b9f1d0717d5cccdcc17247692dedf7a09da" |
@@ -2175,6 +2199,19 @@ | @@ -2175,6 +2199,19 @@ | ||
2175 | semver "^7.3.5" | 2199 | semver "^7.3.5" |
2176 | tsutils "^3.21.0" | 2200 | tsutils "^3.21.0" |
2177 | 2201 | ||
2202 | +"@typescript-eslint/typescript-estree@4.28.0": | ||
2203 | + version "4.28.0" | ||
2204 | + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.28.0.tgz#e66d4e5aa2ede66fec8af434898fe61af10c71cf" | ||
2205 | + integrity sha512-m19UQTRtxMzKAm8QxfKpvh6OwQSXaW1CdZPoCaQuLwAq7VZMNuhJmZR4g5281s2ECt658sldnJfdpSZZaxUGMQ== | ||
2206 | + dependencies: | ||
2207 | + "@typescript-eslint/types" "4.28.0" | ||
2208 | + "@typescript-eslint/visitor-keys" "4.28.0" | ||
2209 | + debug "^4.3.1" | ||
2210 | + globby "^11.0.3" | ||
2211 | + is-glob "^4.0.1" | ||
2212 | + semver "^7.3.5" | ||
2213 | + tsutils "^3.21.0" | ||
2214 | + | ||
2178 | "@typescript-eslint/visitor-keys@4.27.0": | 2215 | "@typescript-eslint/visitor-keys@4.27.0": |
2179 | version "4.27.0" | 2216 | version "4.27.0" |
2180 | resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.27.0.tgz#f56138b993ec822793e7ebcfac6ffdce0a60cb81" | 2217 | resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.27.0.tgz#f56138b993ec822793e7ebcfac6ffdce0a60cb81" |
@@ -2183,16 +2220,24 @@ | @@ -2183,16 +2220,24 @@ | ||
2183 | "@typescript-eslint/types" "4.27.0" | 2220 | "@typescript-eslint/types" "4.27.0" |
2184 | eslint-visitor-keys "^2.0.0" | 2221 | eslint-visitor-keys "^2.0.0" |
2185 | 2222 | ||
2186 | -"@vitejs/plugin-legacy@^1.4.1": | ||
2187 | - version "1.4.1" | ||
2188 | - resolved "https://registry.npmjs.org/@vitejs/plugin-legacy/-/plugin-legacy-1.4.1.tgz#e9f7030081df0534ebc6d6c0f9f7c90adb9e60a9" | ||
2189 | - integrity sha512-xfcBaNYpPCFzDjvhvoUYOGh87SNvvJNmrHtRdAe6lmnmSOgMYW+QNOvWwdHFEUpWaWUGtgeyYfcVN024IgBafA== | 2223 | +"@typescript-eslint/visitor-keys@4.28.0": |
2224 | + version "4.28.0" | ||
2225 | + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.28.0.tgz#255c67c966ec294104169a6939d96f91c8a89434" | ||
2226 | + integrity sha512-PjJyTWwrlrvM5jazxYF5ZPs/nl0kHDZMVbuIcbpawVXaDPelp3+S9zpOz5RmVUfS/fD5l5+ZXNKnWhNYjPzCvw== | ||
2227 | + dependencies: | ||
2228 | + "@typescript-eslint/types" "4.28.0" | ||
2229 | + eslint-visitor-keys "^2.0.0" | ||
2230 | + | ||
2231 | +"@vitejs/plugin-legacy@^1.4.2": | ||
2232 | + version "1.4.2" | ||
2233 | + resolved "https://registry.yarnpkg.com/@vitejs/plugin-legacy/-/plugin-legacy-1.4.2.tgz#219e7b86a9febe62b85a66b68127a89954ed93e5" | ||
2234 | + integrity sha512-D2ADBSpImP0QT8w9Eo+8KKOLg3I8OQhFwuBXGM8WQCRrEs55E3bCf9PTkL8S+tgliyLbJM+gjemxpRuoTTwphA== | ||
2190 | dependencies: | 2235 | dependencies: |
2191 | - "@babel/standalone" "^7.13.12" | ||
2192 | - core-js "^3.8.2" | 2236 | + "@babel/standalone" "^7.14.6" |
2237 | + core-js "^3.14.0" | ||
2193 | magic-string "^0.25.7" | 2238 | magic-string "^0.25.7" |
2194 | regenerator-runtime "^0.13.7" | 2239 | regenerator-runtime "^0.13.7" |
2195 | - systemjs "^6.8.3" | 2240 | + systemjs "^6.10.1" |
2196 | 2241 | ||
2197 | "@vitejs/plugin-vue-jsx@^1.1.5": | 2242 | "@vitejs/plugin-vue-jsx@^1.1.5": |
2198 | version "1.1.5" | 2243 | version "1.1.5" |
@@ -2273,7 +2318,7 @@ | @@ -2273,7 +2318,7 @@ | ||
2273 | 2318 | ||
2274 | "@vue/compiler-core@3.0.11": | 2319 | "@vue/compiler-core@3.0.11": |
2275 | version "3.0.11" | 2320 | version "3.0.11" |
2276 | - resolved "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.0.11.tgz#5ef579e46d7b336b8735228758d1c2c505aae69a" | 2321 | + resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.0.11.tgz#5ef579e46d7b336b8735228758d1c2c505aae69a" |
2277 | integrity sha512-6sFj6TBac1y2cWCvYCA8YzHJEbsVkX7zdRs/3yK/n1ilvRqcn983XvpBbnN3v4mZ1UiQycTvOiajJmOgN9EVgw== | 2322 | integrity sha512-6sFj6TBac1y2cWCvYCA8YzHJEbsVkX7zdRs/3yK/n1ilvRqcn983XvpBbnN3v4mZ1UiQycTvOiajJmOgN9EVgw== |
2278 | dependencies: | 2323 | dependencies: |
2279 | "@babel/parser" "^7.12.0" | 2324 | "@babel/parser" "^7.12.0" |
@@ -2295,7 +2340,7 @@ | @@ -2295,7 +2340,7 @@ | ||
2295 | 2340 | ||
2296 | "@vue/compiler-dom@3.0.11": | 2341 | "@vue/compiler-dom@3.0.11": |
2297 | version "3.0.11" | 2342 | version "3.0.11" |
2298 | - resolved "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.0.11.tgz#b15fc1c909371fd671746020ba55b5dab4a730ee" | 2343 | + resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.0.11.tgz#b15fc1c909371fd671746020ba55b5dab4a730ee" |
2299 | integrity sha512-+3xB50uGeY5Fv9eMKVJs2WSRULfgwaTJsy23OIltKgMrynnIj8hTYY2UL97HCoz78aDw1VDXdrBQ4qepWjnQcw== | 2344 | integrity sha512-+3xB50uGeY5Fv9eMKVJs2WSRULfgwaTJsy23OIltKgMrynnIj8hTYY2UL97HCoz78aDw1VDXdrBQ4qepWjnQcw== |
2300 | dependencies: | 2345 | dependencies: |
2301 | "@vue/compiler-core" "3.0.11" | 2346 | "@vue/compiler-core" "3.0.11" |
@@ -2311,7 +2356,7 @@ | @@ -2311,7 +2356,7 @@ | ||
2311 | 2356 | ||
2312 | "@vue/compiler-sfc@3.0.11": | 2357 | "@vue/compiler-sfc@3.0.11": |
2313 | version "3.0.11" | 2358 | version "3.0.11" |
2314 | - resolved "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.0.11.tgz#cd8ca2154b88967b521f5ad3b10f5f8b6b665679" | 2359 | + resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.0.11.tgz#cd8ca2154b88967b521f5ad3b10f5f8b6b665679" |
2315 | integrity sha512-7fNiZuCecRleiyVGUWNa6pn8fB2fnuJU+3AGjbjl7r1P5wBivfl02H4pG+2aJP5gh2u+0wXov1W38tfWOphsXw== | 2360 | integrity sha512-7fNiZuCecRleiyVGUWNa6pn8fB2fnuJU+3AGjbjl7r1P5wBivfl02H4pG+2aJP5gh2u+0wXov1W38tfWOphsXw== |
2316 | dependencies: | 2361 | dependencies: |
2317 | "@babel/parser" "^7.13.9" | 2362 | "@babel/parser" "^7.13.9" |
@@ -2333,7 +2378,7 @@ | @@ -2333,7 +2378,7 @@ | ||
2333 | 2378 | ||
2334 | "@vue/compiler-sfc@^3.0.11": | 2379 | "@vue/compiler-sfc@^3.0.11": |
2335 | version "3.1.1" | 2380 | version "3.1.1" |
2336 | - resolved "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.1.1.tgz#d4e4507c013d0b219f0b106b317ec5bb1cde3398" | 2381 | + resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.1.1.tgz#d4e4507c013d0b219f0b106b317ec5bb1cde3398" |
2337 | integrity sha512-lSgMsZaYHF+bAgryq5aUqpvyfhu52GJI2/4LoiJCE5uaxc6FCZfxfgqgw/d9ltiZghv+HiISFtmQVAVvlsk+/w== | 2382 | integrity sha512-lSgMsZaYHF+bAgryq5aUqpvyfhu52GJI2/4LoiJCE5uaxc6FCZfxfgqgw/d9ltiZghv+HiISFtmQVAVvlsk+/w== |
2338 | dependencies: | 2383 | dependencies: |
2339 | "@babel/parser" "^7.13.9" | 2384 | "@babel/parser" "^7.13.9" |
@@ -2355,7 +2400,7 @@ | @@ -2355,7 +2400,7 @@ | ||
2355 | 2400 | ||
2356 | "@vue/compiler-ssr@3.0.11": | 2401 | "@vue/compiler-ssr@3.0.11": |
2357 | version "3.0.11" | 2402 | version "3.0.11" |
2358 | - resolved "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.0.11.tgz#ac5a05fd1257412fa66079c823d8203b6a889a13" | 2403 | + resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.0.11.tgz#ac5a05fd1257412fa66079c823d8203b6a889a13" |
2359 | integrity sha512-66yUGI8SGOpNvOcrQybRIhl2M03PJ+OrDPm78i7tvVln86MHTKhM3ERbALK26F7tXl0RkjX4sZpucCpiKs3MnA== | 2404 | integrity sha512-66yUGI8SGOpNvOcrQybRIhl2M03PJ+OrDPm78i7tvVln86MHTKhM3ERbALK26F7tXl0RkjX4sZpucCpiKs3MnA== |
2360 | dependencies: | 2405 | dependencies: |
2361 | "@vue/compiler-dom" "3.0.11" | 2406 | "@vue/compiler-dom" "3.0.11" |
@@ -2376,7 +2421,7 @@ | @@ -2376,7 +2421,7 @@ | ||
2376 | 2421 | ||
2377 | "@vue/reactivity@3.0.11": | 2422 | "@vue/reactivity@3.0.11": |
2378 | version "3.0.11" | 2423 | version "3.0.11" |
2379 | - resolved "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.0.11.tgz#07b588349fd05626b17f3500cbef7d4bdb4dbd0b" | 2424 | + resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.0.11.tgz#07b588349fd05626b17f3500cbef7d4bdb4dbd0b" |
2380 | integrity sha512-SKM3YKxtXHBPMf7yufXeBhCZ4XZDKP9/iXeQSC8bBO3ivBuzAi4aZi0bNoeE2IF2iGfP/AHEt1OU4ARj4ao/Xw== | 2425 | integrity sha512-SKM3YKxtXHBPMf7yufXeBhCZ4XZDKP9/iXeQSC8bBO3ivBuzAi4aZi0bNoeE2IF2iGfP/AHEt1OU4ARj4ao/Xw== |
2381 | dependencies: | 2426 | dependencies: |
2382 | "@vue/shared" "3.0.11" | 2427 | "@vue/shared" "3.0.11" |
@@ -2390,7 +2435,7 @@ | @@ -2390,7 +2435,7 @@ | ||
2390 | 2435 | ||
2391 | "@vue/runtime-core@3.0.11": | 2436 | "@vue/runtime-core@3.0.11": |
2392 | version "3.0.11" | 2437 | version "3.0.11" |
2393 | - resolved "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.0.11.tgz#c52dfc6acf3215493623552c1c2919080c562e44" | 2438 | + resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.0.11.tgz#c52dfc6acf3215493623552c1c2919080c562e44" |
2394 | integrity sha512-87XPNwHfz9JkmOlayBeCCfMh9PT2NBnv795DSbi//C/RaAnc/bGZgECjmkD7oXJ526BZbgk9QZBPdFT8KMxkAg== | 2439 | integrity sha512-87XPNwHfz9JkmOlayBeCCfMh9PT2NBnv795DSbi//C/RaAnc/bGZgECjmkD7oXJ526BZbgk9QZBPdFT8KMxkAg== |
2395 | dependencies: | 2440 | dependencies: |
2396 | "@vue/reactivity" "3.0.11" | 2441 | "@vue/reactivity" "3.0.11" |
@@ -2406,7 +2451,7 @@ | @@ -2406,7 +2451,7 @@ | ||
2406 | 2451 | ||
2407 | "@vue/runtime-dom@3.0.11": | 2452 | "@vue/runtime-dom@3.0.11": |
2408 | version "3.0.11" | 2453 | version "3.0.11" |
2409 | - resolved "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.0.11.tgz#7a552df21907942721feb6961c418e222a699337" | 2454 | + resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.0.11.tgz#7a552df21907942721feb6961c418e222a699337" |
2410 | integrity sha512-jm3FVQESY3y2hKZ2wlkcmFDDyqaPyU3p1IdAX92zTNeCH7I8zZ37PtlE1b9NlCtzV53WjB4TZAYh9yDCMIEumA== | 2455 | integrity sha512-jm3FVQESY3y2hKZ2wlkcmFDDyqaPyU3p1IdAX92zTNeCH7I8zZ37PtlE1b9NlCtzV53WjB4TZAYh9yDCMIEumA== |
2411 | dependencies: | 2456 | dependencies: |
2412 | "@vue/runtime-core" "3.0.11" | 2457 | "@vue/runtime-core" "3.0.11" |
@@ -2424,7 +2469,7 @@ | @@ -2424,7 +2469,7 @@ | ||
2424 | 2469 | ||
2425 | "@vue/shared@3.0.11": | 2470 | "@vue/shared@3.0.11": |
2426 | version "3.0.11" | 2471 | version "3.0.11" |
2427 | - resolved "https://registry.npmjs.org/@vue/shared/-/shared-3.0.11.tgz#20d22dd0da7d358bb21c17f9bde8628152642c77" | 2472 | + resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.0.11.tgz#20d22dd0da7d358bb21c17f9bde8628152642c77" |
2428 | integrity sha512-b+zB8A2so8eCE0JsxjL24J7vdGl8rzPQ09hZNhystm+KqSbKcAej1A+Hbva1rCMmTTqA+hFnUSDc5kouEo0JzA== | 2473 | integrity sha512-b+zB8A2so8eCE0JsxjL24J7vdGl8rzPQ09hZNhystm+KqSbKcAej1A+Hbva1rCMmTTqA+hFnUSDc5kouEo0JzA== |
2429 | 2474 | ||
2430 | "@vue/shared@3.1.1", "@vue/shared@^3.0.11": | 2475 | "@vue/shared@3.1.1", "@vue/shared@^3.0.11": |
@@ -2432,10 +2477,10 @@ | @@ -2432,10 +2477,10 @@ | ||
2432 | resolved "https://registry.npmjs.org/@vue/shared/-/shared-3.1.1.tgz#2287cfc3dc20e5b20aeb65c2c3a56533bdca801c" | 2477 | resolved "https://registry.npmjs.org/@vue/shared/-/shared-3.1.1.tgz#2287cfc3dc20e5b20aeb65c2c3a56533bdca801c" |
2433 | integrity sha512-g+4pzAw7PYSjARtLBoDq6DmcblX8i9KJHSCnyM5VDDFFifUaUT9iHbFpOF/KOizQ9f7QAqU2JH3Y6aXjzUMhVA== | 2478 | integrity sha512-g+4pzAw7PYSjARtLBoDq6DmcblX8i9KJHSCnyM5VDDFFifUaUT9iHbFpOF/KOizQ9f7QAqU2JH3Y6aXjzUMhVA== |
2434 | 2479 | ||
2435 | -"@vue/test-utils@^2.0.0-rc.7": | ||
2436 | - version "2.0.0-rc.7" | ||
2437 | - resolved "https://registry.npmjs.org/@vue/test-utils/-/test-utils-2.0.0-rc.7.tgz#a6c4b4ac9e81dcdae31507056aabb16417f29138" | ||
2438 | - integrity sha512-CeaahWNVUFW+MXY0dvGP655upNVWcbzqpu6qMn4nK/2nU3O9uDuthRXBIle++nXanYkNUCvlC+TQ5fVeKkvl+Q== | 2480 | +"@vue/test-utils@^2.0.0-rc.8": |
2481 | + version "2.0.0-rc.8" | ||
2482 | + resolved "https://registry.yarnpkg.com/@vue/test-utils/-/test-utils-2.0.0-rc.8.tgz#9e9567fdc5ced8b77f81981bb83b98938d2411e0" | ||
2483 | + integrity sha512-D06/y5N08QsfwlN7MwjSDI069Vv8L6BLjdHz6wvu+uXtGuTkhbzkmzHWIXHU+lrvi3b6FoQDpYsTiHmdQJbYaw== | ||
2439 | 2484 | ||
2440 | "@vueuse/core@^5.0.3": | 2485 | "@vueuse/core@^5.0.3": |
2441 | version "5.0.3" | 2486 | version "5.0.3" |
@@ -2632,7 +2677,7 @@ ansi-styles@^5.0.0: | @@ -2632,7 +2677,7 @@ ansi-styles@^5.0.0: | ||
2632 | 2677 | ||
2633 | ant-design-vue@2.1.6: | 2678 | ant-design-vue@2.1.6: |
2634 | version "2.1.6" | 2679 | version "2.1.6" |
2635 | - resolved "https://registry.npmjs.org/ant-design-vue/-/ant-design-vue-2.1.6.tgz#c51cdc858e1b1b8b569f5435eb487f53a3f1745e" | 2680 | + resolved "https://registry.yarnpkg.com/ant-design-vue/-/ant-design-vue-2.1.6.tgz#c51cdc858e1b1b8b569f5435eb487f53a3f1745e" |
2636 | integrity sha512-qICxb6Y4f7QuSuh/jbLhZA9SkUBnP9xYfy/E6yD7+1fg04aAzmRK8oLv8ETuGTrROVdSVeic9v/NS2BXEuuARg== | 2681 | integrity sha512-qICxb6Y4f7QuSuh/jbLhZA9SkUBnP9xYfy/E6yD7+1fg04aAzmRK8oLv8ETuGTrROVdSVeic9v/NS2BXEuuARg== |
2637 | dependencies: | 2682 | dependencies: |
2638 | "@ant-design-vue/use" "^0.0.1-0" | 2683 | "@ant-design-vue/use" "^0.0.1-0" |
@@ -2834,12 +2879,12 @@ axios@^0.21.1: | @@ -2834,12 +2879,12 @@ axios@^0.21.1: | ||
2834 | dependencies: | 2879 | dependencies: |
2835 | follow-redirects "^1.10.0" | 2880 | follow-redirects "^1.10.0" |
2836 | 2881 | ||
2837 | -babel-jest@^27.0.2: | ||
2838 | - version "27.0.2" | ||
2839 | - resolved "https://registry.npmjs.org/babel-jest/-/babel-jest-27.0.2.tgz#7dc18adb01322acce62c2af76ea2c7cd186ade37" | ||
2840 | - integrity sha512-9OThPl3/IQbo4Yul2vMz4FYwILPQak8XelX4YGowygfHaOl5R5gfjm4iVx4d8aUugkW683t8aq0A74E7b5DU1Q== | 2882 | +babel-jest@^27.0.5: |
2883 | + version "27.0.5" | ||
2884 | + resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-27.0.5.tgz#cd34c033ada05d1362211e5152391fd7a88080c8" | ||
2885 | + integrity sha512-bTMAbpCX7ldtfbca2llYLeSFsDM257aspyAOpsdrdSrBqoLkWCy4HPYTXtXWaSLgFPjrJGACL65rzzr4RFGadw== | ||
2841 | dependencies: | 2886 | dependencies: |
2842 | - "@jest/transform" "^27.0.2" | 2887 | + "@jest/transform" "^27.0.5" |
2843 | "@jest/types" "^27.0.2" | 2888 | "@jest/types" "^27.0.2" |
2844 | "@types/babel__core" "^7.1.14" | 2889 | "@types/babel__core" "^7.1.14" |
2845 | babel-plugin-istanbul "^6.0.0" | 2890 | babel-plugin-istanbul "^6.0.0" |
@@ -3587,10 +3632,10 @@ coa@^2.0.2: | @@ -3587,10 +3632,10 @@ coa@^2.0.2: | ||
3587 | chalk "^2.4.1" | 3632 | chalk "^2.4.1" |
3588 | q "^1.1.2" | 3633 | q "^1.1.2" |
3589 | 3634 | ||
3590 | -codemirror@^5.61.1: | ||
3591 | - version "5.61.1" | ||
3592 | - resolved "https://registry.npmjs.org/codemirror/-/codemirror-5.61.1.tgz#ccfc8a43b8fcfb8b12e8e75b5ffde48d541406e0" | ||
3593 | - integrity sha512-+D1NZjAucuzE93vJGbAaXzvoBHwp9nJZWWWF9utjv25+5AZUiah6CIlfb4ikG4MoDsFsCG8niiJH5++OO2LgIQ== | 3635 | +codemirror@^5.62.0: |
3636 | + version "5.62.0" | ||
3637 | + resolved "https://registry.yarnpkg.com/codemirror/-/codemirror-5.62.0.tgz#e9ecd012e6f9eaf2e05ff4a449ff750f51619e22" | ||
3638 | + integrity sha512-Xnl3304iCc8nyVZuRkzDVVwc794uc9QNX0UcPGeNic1fbzkSrO4l4GVXho9tRNKBgPYZXgocUqXyfIv3BILhCQ== | ||
3594 | 3639 | ||
3595 | codepage@~1.14.0: | 3640 | codepage@~1.14.0: |
3596 | version "1.14.0" | 3641 | version "1.14.0" |
@@ -4024,11 +4069,16 @@ core-js-compat@^3.14.0: | @@ -4024,11 +4069,16 @@ core-js-compat@^3.14.0: | ||
4024 | browserslist "^4.16.6" | 4069 | browserslist "^4.16.6" |
4025 | semver "7.0.0" | 4070 | semver "7.0.0" |
4026 | 4071 | ||
4027 | -core-js@^3.12.1, core-js@^3.8.2: | 4072 | +core-js@^3.12.1: |
4028 | version "3.14.0" | 4073 | version "3.14.0" |
4029 | resolved "https://registry.npmjs.org/core-js/-/core-js-3.14.0.tgz#62322b98c71cc2018b027971a69419e2425c2a6c" | 4074 | resolved "https://registry.npmjs.org/core-js/-/core-js-3.14.0.tgz#62322b98c71cc2018b027971a69419e2425c2a6c" |
4030 | integrity sha512-3s+ed8er9ahK+zJpp9ZtuVcDoFzHNiZsPbNAAE4KXgrRHbjSqqNN6xGSXq6bq7TZIbKj4NLrLb6bJ5i+vSVjHA== | 4075 | integrity sha512-3s+ed8er9ahK+zJpp9ZtuVcDoFzHNiZsPbNAAE4KXgrRHbjSqqNN6xGSXq6bq7TZIbKj4NLrLb6bJ5i+vSVjHA== |
4031 | 4076 | ||
4077 | +core-js@^3.14.0: | ||
4078 | + version "3.15.0" | ||
4079 | + resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.15.0.tgz#db9554ebce0b6fd90dc9b1f2465c841d2d055044" | ||
4080 | + integrity sha512-GUbtPllXMYRzIgHNZ4dTYTcUemls2cni83Q4Q/TrFONHfhcg9oEGOtaGHfb0cpzec60P96UKPvMkjX1jET8rUw== | ||
4081 | + | ||
4032 | core-util-is@~1.0.0: | 4082 | core-util-is@~1.0.0: |
4033 | version "1.0.2" | 4083 | version "1.0.2" |
4034 | resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" | 4084 | resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" |
@@ -4543,7 +4593,7 @@ doctypes@^1.1.0: | @@ -4543,7 +4593,7 @@ doctypes@^1.1.0: | ||
4543 | 4593 | ||
4544 | dom-align@^1.10.4: | 4594 | dom-align@^1.10.4: |
4545 | version "1.12.2" | 4595 | version "1.12.2" |
4546 | - resolved "https://registry.npmjs.org/dom-align/-/dom-align-1.12.2.tgz#0f8164ebd0c9c21b0c790310493cd855892acd4b" | 4596 | + resolved "https://registry.yarnpkg.com/dom-align/-/dom-align-1.12.2.tgz#0f8164ebd0c9c21b0c790310493cd855892acd4b" |
4547 | integrity sha512-pHuazgqrsTFrGU2WLDdXxCFabkdQDx72ddkraZNih1KsMcN5qsRSTR9O4VJRlwTPCPb5COYg3LOfiMHHcPInHg== | 4597 | integrity sha512-pHuazgqrsTFrGU2WLDdXxCFabkdQDx72ddkraZNih1KsMcN5qsRSTR9O4VJRlwTPCPb5COYg3LOfiMHHcPInHg== |
4548 | 4598 | ||
4549 | dom-scroll-into-view@^2.0.0: | 4599 | dom-scroll-into-view@^2.0.0: |
@@ -7110,12 +7160,12 @@ jest-changed-files@^27.0.2: | @@ -7110,12 +7160,12 @@ jest-changed-files@^27.0.2: | ||
7110 | execa "^5.0.0" | 7160 | execa "^5.0.0" |
7111 | throat "^6.0.1" | 7161 | throat "^6.0.1" |
7112 | 7162 | ||
7113 | -jest-circus@^27.0.4: | ||
7114 | - version "27.0.4" | ||
7115 | - resolved "https://registry.npmjs.org/jest-circus/-/jest-circus-27.0.4.tgz#3b261514ee3b3da33def736a6352c98ff56bb6e6" | ||
7116 | - integrity sha512-QD+eblDiRphta630WRKewuASLs/oY1Zki2G4bccntRvrTHQ63ljwFR5TLduuK4Zg0ZPzW0+8o6AP7KRd1yKOjw== | 7163 | +jest-circus@^27.0.5: |
7164 | + version "27.0.5" | ||
7165 | + resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-27.0.5.tgz#b5e327f1d6857c8485126f8e364aefa4378debaa" | ||
7166 | + integrity sha512-p5rO90o1RTh8LPOG6l0Fc9qgp5YGv+8M5CFixhMh7gGHtGSobD1AxX9cjFZujILgY8t30QZ7WVvxlnuG31r8TA== | ||
7117 | dependencies: | 7167 | dependencies: |
7118 | - "@jest/environment" "^27.0.3" | 7168 | + "@jest/environment" "^27.0.5" |
7119 | "@jest/test-result" "^27.0.2" | 7169 | "@jest/test-result" "^27.0.2" |
7120 | "@jest/types" "^27.0.2" | 7170 | "@jest/types" "^27.0.2" |
7121 | "@types/node" "*" | 7171 | "@types/node" "*" |
@@ -7127,54 +7177,54 @@ jest-circus@^27.0.4: | @@ -7127,54 +7177,54 @@ jest-circus@^27.0.4: | ||
7127 | jest-each "^27.0.2" | 7177 | jest-each "^27.0.2" |
7128 | jest-matcher-utils "^27.0.2" | 7178 | jest-matcher-utils "^27.0.2" |
7129 | jest-message-util "^27.0.2" | 7179 | jest-message-util "^27.0.2" |
7130 | - jest-runtime "^27.0.4" | ||
7131 | - jest-snapshot "^27.0.4" | 7180 | + jest-runtime "^27.0.5" |
7181 | + jest-snapshot "^27.0.5" | ||
7132 | jest-util "^27.0.2" | 7182 | jest-util "^27.0.2" |
7133 | pretty-format "^27.0.2" | 7183 | pretty-format "^27.0.2" |
7134 | slash "^3.0.0" | 7184 | slash "^3.0.0" |
7135 | stack-utils "^2.0.3" | 7185 | stack-utils "^2.0.3" |
7136 | throat "^6.0.1" | 7186 | throat "^6.0.1" |
7137 | 7187 | ||
7138 | -jest-cli@^27.0.4: | ||
7139 | - version "27.0.4" | ||
7140 | - resolved "https://registry.npmjs.org/jest-cli/-/jest-cli-27.0.4.tgz#491b12c754c0d7c6873b13a66f26b3a80a852910" | ||
7141 | - integrity sha512-E0T+/i2lxsWAzV7LKYd0SB7HUAvePqaeIh5vX43/G5jXLhv1VzjYzJAGEkTfvxV774ll9cyE2ljcL73PVMEOXQ== | 7188 | +jest-cli@^27.0.5: |
7189 | + version "27.0.5" | ||
7190 | + resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-27.0.5.tgz#f359ba042624cffb96b713010a94bffb7498a37c" | ||
7191 | + integrity sha512-kZqY020QFOFQKVE2knFHirTBElw3/Q0kUbDc3nMfy/x+RQ7zUY89SUuzpHHJoSX1kX7Lq569ncvjNqU3Td/FCA== | ||
7142 | dependencies: | 7192 | dependencies: |
7143 | - "@jest/core" "^27.0.4" | 7193 | + "@jest/core" "^27.0.5" |
7144 | "@jest/test-result" "^27.0.2" | 7194 | "@jest/test-result" "^27.0.2" |
7145 | "@jest/types" "^27.0.2" | 7195 | "@jest/types" "^27.0.2" |
7146 | chalk "^4.0.0" | 7196 | chalk "^4.0.0" |
7147 | exit "^0.1.2" | 7197 | exit "^0.1.2" |
7148 | graceful-fs "^4.2.4" | 7198 | graceful-fs "^4.2.4" |
7149 | import-local "^3.0.2" | 7199 | import-local "^3.0.2" |
7150 | - jest-config "^27.0.4" | 7200 | + jest-config "^27.0.5" |
7151 | jest-util "^27.0.2" | 7201 | jest-util "^27.0.2" |
7152 | jest-validate "^27.0.2" | 7202 | jest-validate "^27.0.2" |
7153 | prompts "^2.0.1" | 7203 | prompts "^2.0.1" |
7154 | yargs "^16.0.3" | 7204 | yargs "^16.0.3" |
7155 | 7205 | ||
7156 | -jest-config@^27.0.4: | ||
7157 | - version "27.0.4" | ||
7158 | - resolved "https://registry.npmjs.org/jest-config/-/jest-config-27.0.4.tgz#c4f41378acf40ca77860fb4e213b12109d87b8cf" | ||
7159 | - integrity sha512-VkQFAHWnPQefdvHU9A+G3H/Z3NrrTKqWpvxgQz3nkUdkDTWeKJE6e//BL+R7z79dXOMVksYgM/z6ndtN0hfChg== | 7206 | +jest-config@^27.0.5: |
7207 | + version "27.0.5" | ||
7208 | + resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-27.0.5.tgz#683da3b0d8237675c29c817f6e3aba1481028e19" | ||
7209 | + integrity sha512-zCUIXag7QIXKEVN4kUKbDBDi9Q53dV5o3eNhGqe+5zAbt1vLs4VE3ceWaYrOub0L4Y7E9pGfM84TX/0ARcE+Qw== | ||
7160 | dependencies: | 7210 | dependencies: |
7161 | "@babel/core" "^7.1.0" | 7211 | "@babel/core" "^7.1.0" |
7162 | - "@jest/test-sequencer" "^27.0.4" | 7212 | + "@jest/test-sequencer" "^27.0.5" |
7163 | "@jest/types" "^27.0.2" | 7213 | "@jest/types" "^27.0.2" |
7164 | - babel-jest "^27.0.2" | 7214 | + babel-jest "^27.0.5" |
7165 | chalk "^4.0.0" | 7215 | chalk "^4.0.0" |
7166 | deepmerge "^4.2.2" | 7216 | deepmerge "^4.2.2" |
7167 | glob "^7.1.1" | 7217 | glob "^7.1.1" |
7168 | graceful-fs "^4.2.4" | 7218 | graceful-fs "^4.2.4" |
7169 | is-ci "^3.0.0" | 7219 | is-ci "^3.0.0" |
7170 | - jest-circus "^27.0.4" | ||
7171 | - jest-environment-jsdom "^27.0.3" | ||
7172 | - jest-environment-node "^27.0.3" | 7220 | + jest-circus "^27.0.5" |
7221 | + jest-environment-jsdom "^27.0.5" | ||
7222 | + jest-environment-node "^27.0.5" | ||
7173 | jest-get-type "^27.0.1" | 7223 | jest-get-type "^27.0.1" |
7174 | - jest-jasmine2 "^27.0.4" | 7224 | + jest-jasmine2 "^27.0.5" |
7175 | jest-regex-util "^27.0.1" | 7225 | jest-regex-util "^27.0.1" |
7176 | - jest-resolve "^27.0.4" | ||
7177 | - jest-runner "^27.0.4" | 7226 | + jest-resolve "^27.0.5" |
7227 | + jest-runner "^27.0.5" | ||
7178 | jest-util "^27.0.2" | 7228 | jest-util "^27.0.2" |
7179 | jest-validate "^27.0.2" | 7229 | jest-validate "^27.0.2" |
7180 | micromatch "^4.0.4" | 7230 | micromatch "^4.0.4" |
@@ -7218,26 +7268,26 @@ jest-each@^27.0.2: | @@ -7218,26 +7268,26 @@ jest-each@^27.0.2: | ||
7218 | jest-util "^27.0.2" | 7268 | jest-util "^27.0.2" |
7219 | pretty-format "^27.0.2" | 7269 | pretty-format "^27.0.2" |
7220 | 7270 | ||
7221 | -jest-environment-jsdom@^27.0.3: | ||
7222 | - version "27.0.3" | ||
7223 | - resolved "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.0.3.tgz#ed73e913ddc03864eb9f934b5cbabf1b63504e2e" | ||
7224 | - integrity sha512-5KLmgv1bhiimpSA8oGTnZYk6g4fsNyZiA/6gI2tAZUgrufd7heRUSVh4gRokzZVEj8zlwAQYT0Zs6tuJSW/ECA== | 7271 | +jest-environment-jsdom@^27.0.5: |
7272 | + version "27.0.5" | ||
7273 | + resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-27.0.5.tgz#c36771977cf4490a9216a70473b39161d193c212" | ||
7274 | + integrity sha512-ToWhViIoTl5738oRaajTMgYhdQL73UWPoV4GqHGk2DPhs+olv8OLq5KoQW8Yf+HtRao52XLqPWvl46dPI88PdA== | ||
7225 | dependencies: | 7275 | dependencies: |
7226 | - "@jest/environment" "^27.0.3" | ||
7227 | - "@jest/fake-timers" "^27.0.3" | 7276 | + "@jest/environment" "^27.0.5" |
7277 | + "@jest/fake-timers" "^27.0.5" | ||
7228 | "@jest/types" "^27.0.2" | 7278 | "@jest/types" "^27.0.2" |
7229 | "@types/node" "*" | 7279 | "@types/node" "*" |
7230 | jest-mock "^27.0.3" | 7280 | jest-mock "^27.0.3" |
7231 | jest-util "^27.0.2" | 7281 | jest-util "^27.0.2" |
7232 | jsdom "^16.6.0" | 7282 | jsdom "^16.6.0" |
7233 | 7283 | ||
7234 | -jest-environment-node@^27.0.3: | ||
7235 | - version "27.0.3" | ||
7236 | - resolved "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.0.3.tgz#b4acb3679d2552a4215732cab8b0ca7ec4398ee0" | ||
7237 | - integrity sha512-co2/IVnIFL3cItpFULCvXFg9us4gvWXgs7mutAMPCbFhcqh56QAOdKhNzC2+RycsC/k4mbMj1VF+9F/NzA0ROg== | 7284 | +jest-environment-node@^27.0.5: |
7285 | + version "27.0.5" | ||
7286 | + resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-27.0.5.tgz#b7238fc2b61ef2fb9563a3b7653a95fa009a6a54" | ||
7287 | + integrity sha512-47qqScV/WMVz5OKF5TWpAeQ1neZKqM3ySwNveEnLyd+yaE/KT6lSMx/0SOx60+ZUcVxPiESYS+Kt2JS9y4PpkQ== | ||
7238 | dependencies: | 7288 | dependencies: |
7239 | - "@jest/environment" "^27.0.3" | ||
7240 | - "@jest/fake-timers" "^27.0.3" | 7289 | + "@jest/environment" "^27.0.5" |
7290 | + "@jest/fake-timers" "^27.0.5" | ||
7241 | "@jest/types" "^27.0.2" | 7291 | "@jest/types" "^27.0.2" |
7242 | "@types/node" "*" | 7292 | "@types/node" "*" |
7243 | jest-mock "^27.0.3" | 7293 | jest-mock "^27.0.3" |
@@ -7253,10 +7303,10 @@ jest-get-type@^27.0.1: | @@ -7253,10 +7303,10 @@ jest-get-type@^27.0.1: | ||
7253 | resolved "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.0.1.tgz#34951e2b08c8801eb28559d7eb732b04bbcf7815" | 7303 | resolved "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.0.1.tgz#34951e2b08c8801eb28559d7eb732b04bbcf7815" |
7254 | integrity sha512-9Tggo9zZbu0sHKebiAijyt1NM77Z0uO4tuWOxUCujAiSeXv30Vb5D4xVF4UR4YWNapcftj+PbByU54lKD7/xMg== | 7304 | integrity sha512-9Tggo9zZbu0sHKebiAijyt1NM77Z0uO4tuWOxUCujAiSeXv30Vb5D4xVF4UR4YWNapcftj+PbByU54lKD7/xMg== |
7255 | 7305 | ||
7256 | -jest-haste-map@^27.0.2: | ||
7257 | - version "27.0.2" | ||
7258 | - resolved "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.0.2.tgz#3f1819400c671237e48b4d4b76a80a0dbed7577f" | ||
7259 | - integrity sha512-37gYfrYjjhEfk37C4bCMWAC0oPBxDpG0qpl8lYg8BT//wf353YT/fzgA7+Dq0EtM7rPFS3JEcMsxdtDwNMi2cA== | 7306 | +jest-haste-map@^27.0.5: |
7307 | + version "27.0.5" | ||
7308 | + resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-27.0.5.tgz#2e1e55073b5328410a2c0d74b334e513d71f3470" | ||
7309 | + integrity sha512-3LFryGSHxwPFHzKIs6W0BGA2xr6g1MvzSjR3h3D8K8Uqy4vbRm/grpGHzbPtIbOPLC6wFoViRrNEmd116QWSkw== | ||
7260 | dependencies: | 7310 | dependencies: |
7261 | "@jest/types" "^27.0.2" | 7311 | "@jest/types" "^27.0.2" |
7262 | "@types/graceful-fs" "^4.1.2" | 7312 | "@types/graceful-fs" "^4.1.2" |
@@ -7273,13 +7323,13 @@ jest-haste-map@^27.0.2: | @@ -7273,13 +7323,13 @@ jest-haste-map@^27.0.2: | ||
7273 | optionalDependencies: | 7323 | optionalDependencies: |
7274 | fsevents "^2.3.2" | 7324 | fsevents "^2.3.2" |
7275 | 7325 | ||
7276 | -jest-jasmine2@^27.0.4: | ||
7277 | - version "27.0.4" | ||
7278 | - resolved "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.0.4.tgz#c669519ccf4904a485338555e1e66cad36bb0670" | ||
7279 | - integrity sha512-yj3WrjjquZwkJw+eA4c9yucHw4/+EHndHWSqgHbHGQfT94ihaaQsa009j1a0puU8CNxPDk0c1oAPeOpdJUElwA== | 7326 | +jest-jasmine2@^27.0.5: |
7327 | + version "27.0.5" | ||
7328 | + resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-27.0.5.tgz#8a6eb2a685cdec3af13881145c77553e4e197776" | ||
7329 | + integrity sha512-m3TojR19sFmTn79QoaGy1nOHBcLvtLso6Zh7u+gYxZWGcza4rRPVqwk1hciA5ZOWWZIJOukAcore8JRX992FaA== | ||
7280 | dependencies: | 7330 | dependencies: |
7281 | "@babel/traverse" "^7.1.0" | 7331 | "@babel/traverse" "^7.1.0" |
7282 | - "@jest/environment" "^27.0.3" | 7332 | + "@jest/environment" "^27.0.5" |
7283 | "@jest/source-map" "^27.0.1" | 7333 | "@jest/source-map" "^27.0.1" |
7284 | "@jest/test-result" "^27.0.2" | 7334 | "@jest/test-result" "^27.0.2" |
7285 | "@jest/types" "^27.0.2" | 7335 | "@jest/types" "^27.0.2" |
@@ -7291,8 +7341,8 @@ jest-jasmine2@^27.0.4: | @@ -7291,8 +7341,8 @@ jest-jasmine2@^27.0.4: | ||
7291 | jest-each "^27.0.2" | 7341 | jest-each "^27.0.2" |
7292 | jest-matcher-utils "^27.0.2" | 7342 | jest-matcher-utils "^27.0.2" |
7293 | jest-message-util "^27.0.2" | 7343 | jest-message-util "^27.0.2" |
7294 | - jest-runtime "^27.0.4" | ||
7295 | - jest-snapshot "^27.0.4" | 7344 | + jest-runtime "^27.0.5" |
7345 | + jest-snapshot "^27.0.5" | ||
7296 | jest-util "^27.0.2" | 7346 | jest-util "^27.0.2" |
7297 | pretty-format "^27.0.2" | 7347 | pretty-format "^27.0.2" |
7298 | throat "^6.0.1" | 7348 | throat "^6.0.1" |
@@ -7348,19 +7398,19 @@ jest-regex-util@^27.0.1: | @@ -7348,19 +7398,19 @@ jest-regex-util@^27.0.1: | ||
7348 | resolved "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.0.1.tgz#69d4b1bf5b690faa3490113c47486ed85dd45b68" | 7398 | resolved "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.0.1.tgz#69d4b1bf5b690faa3490113c47486ed85dd45b68" |
7349 | integrity sha512-6nY6QVcpTgEKQy1L41P4pr3aOddneK17kn3HJw6SdwGiKfgCGTvH02hVXL0GU8GEKtPH83eD2DIDgxHXOxVohQ== | 7399 | integrity sha512-6nY6QVcpTgEKQy1L41P4pr3aOddneK17kn3HJw6SdwGiKfgCGTvH02hVXL0GU8GEKtPH83eD2DIDgxHXOxVohQ== |
7350 | 7400 | ||
7351 | -jest-resolve-dependencies@^27.0.4: | ||
7352 | - version "27.0.4" | ||
7353 | - resolved "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.0.4.tgz#a07a242d70d668afd3fcf7f4270755eebb1fe579" | ||
7354 | - integrity sha512-F33UPfw1YGWCV2uxJl7wD6TvcQn5IC0LtguwY3r4L7R6H4twpLkp5Q2ZfzRx9A2I3G8feiy0O0sqcn/Qoym71A== | 7401 | +jest-resolve-dependencies@^27.0.5: |
7402 | + version "27.0.5" | ||
7403 | + resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-27.0.5.tgz#819ccdddd909c65acddb063aac3a49e4ba1ed569" | ||
7404 | + integrity sha512-xUj2dPoEEd59P+nuih4XwNa4nJ/zRd/g4rMvjHrZPEBWeWRq/aJnnM6mug+B+Nx+ILXGtfWHzQvh7TqNV/WbuA== | ||
7355 | dependencies: | 7405 | dependencies: |
7356 | "@jest/types" "^27.0.2" | 7406 | "@jest/types" "^27.0.2" |
7357 | jest-regex-util "^27.0.1" | 7407 | jest-regex-util "^27.0.1" |
7358 | - jest-snapshot "^27.0.4" | 7408 | + jest-snapshot "^27.0.5" |
7359 | 7409 | ||
7360 | -jest-resolve@^27.0.4: | ||
7361 | - version "27.0.4" | ||
7362 | - resolved "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.0.4.tgz#8a27bc3f2f00c8ea28f3bc99bbf6f468300a703d" | ||
7363 | - integrity sha512-BcfyK2i3cG79PDb/6gB6zFeFQlcqLsQjGBqznFCpA0L/3l1L/oOsltdUjs5eISAWA9HS9qtj8v2PSZr/yWxONQ== | 7410 | +jest-resolve@^27.0.5: |
7411 | + version "27.0.5" | ||
7412 | + resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-27.0.5.tgz#937535a5b481ad58e7121eaea46d1424a1e0c507" | ||
7413 | + integrity sha512-Md65pngRh8cRuWVdWznXBB5eDt391OJpdBaJMxfjfuXCvOhM3qQBtLMCMTykhuUKiBMmy5BhqCW7AVOKmPrW+Q== | ||
7364 | dependencies: | 7414 | dependencies: |
7365 | "@jest/types" "^27.0.2" | 7415 | "@jest/types" "^27.0.2" |
7366 | chalk "^4.0.0" | 7416 | chalk "^4.0.0" |
@@ -7372,15 +7422,15 @@ jest-resolve@^27.0.4: | @@ -7372,15 +7422,15 @@ jest-resolve@^27.0.4: | ||
7372 | resolve "^1.20.0" | 7422 | resolve "^1.20.0" |
7373 | slash "^3.0.0" | 7423 | slash "^3.0.0" |
7374 | 7424 | ||
7375 | -jest-runner@^27.0.4: | ||
7376 | - version "27.0.4" | ||
7377 | - resolved "https://registry.npmjs.org/jest-runner/-/jest-runner-27.0.4.tgz#2787170a9509b792ae129794f6944d27d5d12a4f" | ||
7378 | - integrity sha512-NfmvSYLCsCJk2AG8Ar2NAh4PhsJJpO+/r+g4bKR5L/5jFzx/indUpnVBdrfDvuqhGLLAvrKJ9FM/Nt8o1dsqxg== | 7425 | +jest-runner@^27.0.5: |
7426 | + version "27.0.5" | ||
7427 | + resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-27.0.5.tgz#b6fdc587e1a5056339205914294555c554efc08a" | ||
7428 | + integrity sha512-HNhOtrhfKPArcECgBTcWOc+8OSL8GoFoa7RsHGnfZR1C1dFohxy9eLtpYBS+koybAHlJLZzNCx2Y/Ic3iEtJpQ== | ||
7379 | dependencies: | 7429 | dependencies: |
7380 | "@jest/console" "^27.0.2" | 7430 | "@jest/console" "^27.0.2" |
7381 | - "@jest/environment" "^27.0.3" | 7431 | + "@jest/environment" "^27.0.5" |
7382 | "@jest/test-result" "^27.0.2" | 7432 | "@jest/test-result" "^27.0.2" |
7383 | - "@jest/transform" "^27.0.2" | 7433 | + "@jest/transform" "^27.0.5" |
7384 | "@jest/types" "^27.0.2" | 7434 | "@jest/types" "^27.0.2" |
7385 | "@types/node" "*" | 7435 | "@types/node" "*" |
7386 | chalk "^4.0.0" | 7436 | chalk "^4.0.0" |
@@ -7388,30 +7438,30 @@ jest-runner@^27.0.4: | @@ -7388,30 +7438,30 @@ jest-runner@^27.0.4: | ||
7388 | exit "^0.1.2" | 7438 | exit "^0.1.2" |
7389 | graceful-fs "^4.2.4" | 7439 | graceful-fs "^4.2.4" |
7390 | jest-docblock "^27.0.1" | 7440 | jest-docblock "^27.0.1" |
7391 | - jest-environment-jsdom "^27.0.3" | ||
7392 | - jest-environment-node "^27.0.3" | ||
7393 | - jest-haste-map "^27.0.2" | 7441 | + jest-environment-jsdom "^27.0.5" |
7442 | + jest-environment-node "^27.0.5" | ||
7443 | + jest-haste-map "^27.0.5" | ||
7394 | jest-leak-detector "^27.0.2" | 7444 | jest-leak-detector "^27.0.2" |
7395 | jest-message-util "^27.0.2" | 7445 | jest-message-util "^27.0.2" |
7396 | - jest-resolve "^27.0.4" | ||
7397 | - jest-runtime "^27.0.4" | 7446 | + jest-resolve "^27.0.5" |
7447 | + jest-runtime "^27.0.5" | ||
7398 | jest-util "^27.0.2" | 7448 | jest-util "^27.0.2" |
7399 | jest-worker "^27.0.2" | 7449 | jest-worker "^27.0.2" |
7400 | source-map-support "^0.5.6" | 7450 | source-map-support "^0.5.6" |
7401 | throat "^6.0.1" | 7451 | throat "^6.0.1" |
7402 | 7452 | ||
7403 | -jest-runtime@^27.0.4: | ||
7404 | - version "27.0.4" | ||
7405 | - resolved "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.0.4.tgz#2e4a6aa77cac32ac612dfe12768387a8aa15c2f0" | ||
7406 | - integrity sha512-voJB4xbAjS/qYPboV+e+gmg3jfvHJJY4CagFWBOM9dQKtlaiTjcpD2tWwla84Z7PtXSQPeIpXY0qksA9Dum29A== | 7453 | +jest-runtime@^27.0.5: |
7454 | + version "27.0.5" | ||
7455 | + resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-27.0.5.tgz#cd5d1aa9754d30ddf9f13038b3cb7b95b46f552d" | ||
7456 | + integrity sha512-V/w/+VasowPESbmhXn5AsBGPfb35T7jZPGZybYTHxZdP7Gwaa+A0EXE6rx30DshHKA98lVCODbCO8KZpEW3hiQ== | ||
7407 | dependencies: | 7457 | dependencies: |
7408 | "@jest/console" "^27.0.2" | 7458 | "@jest/console" "^27.0.2" |
7409 | - "@jest/environment" "^27.0.3" | ||
7410 | - "@jest/fake-timers" "^27.0.3" | ||
7411 | - "@jest/globals" "^27.0.3" | 7459 | + "@jest/environment" "^27.0.5" |
7460 | + "@jest/fake-timers" "^27.0.5" | ||
7461 | + "@jest/globals" "^27.0.5" | ||
7412 | "@jest/source-map" "^27.0.1" | 7462 | "@jest/source-map" "^27.0.1" |
7413 | "@jest/test-result" "^27.0.2" | 7463 | "@jest/test-result" "^27.0.2" |
7414 | - "@jest/transform" "^27.0.2" | 7464 | + "@jest/transform" "^27.0.5" |
7415 | "@jest/types" "^27.0.2" | 7465 | "@jest/types" "^27.0.2" |
7416 | "@types/yargs" "^16.0.0" | 7466 | "@types/yargs" "^16.0.0" |
7417 | chalk "^4.0.0" | 7467 | chalk "^4.0.0" |
@@ -7420,12 +7470,12 @@ jest-runtime@^27.0.4: | @@ -7420,12 +7470,12 @@ jest-runtime@^27.0.4: | ||
7420 | exit "^0.1.2" | 7470 | exit "^0.1.2" |
7421 | glob "^7.1.3" | 7471 | glob "^7.1.3" |
7422 | graceful-fs "^4.2.4" | 7472 | graceful-fs "^4.2.4" |
7423 | - jest-haste-map "^27.0.2" | 7473 | + jest-haste-map "^27.0.5" |
7424 | jest-message-util "^27.0.2" | 7474 | jest-message-util "^27.0.2" |
7425 | jest-mock "^27.0.3" | 7475 | jest-mock "^27.0.3" |
7426 | jest-regex-util "^27.0.1" | 7476 | jest-regex-util "^27.0.1" |
7427 | - jest-resolve "^27.0.4" | ||
7428 | - jest-snapshot "^27.0.4" | 7477 | + jest-resolve "^27.0.5" |
7478 | + jest-snapshot "^27.0.5" | ||
7429 | jest-util "^27.0.2" | 7479 | jest-util "^27.0.2" |
7430 | jest-validate "^27.0.2" | 7480 | jest-validate "^27.0.2" |
7431 | slash "^3.0.0" | 7481 | slash "^3.0.0" |
@@ -7440,10 +7490,10 @@ jest-serializer@^27.0.1: | @@ -7440,10 +7490,10 @@ jest-serializer@^27.0.1: | ||
7440 | "@types/node" "*" | 7490 | "@types/node" "*" |
7441 | graceful-fs "^4.2.4" | 7491 | graceful-fs "^4.2.4" |
7442 | 7492 | ||
7443 | -jest-snapshot@^27.0.4: | ||
7444 | - version "27.0.4" | ||
7445 | - resolved "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.0.4.tgz#2b96e22ca90382b3e93bd0aae2ce4c78bf51fb5b" | ||
7446 | - integrity sha512-hnjrvpKGdSMvKfbHyaG5Kul7pDJGZvjVy0CKpzhu28MmAssDXS6GpynhXzgst1wBQoKD8c9b2VS2a5yhDLQRCA== | 7493 | +jest-snapshot@^27.0.5: |
7494 | + version "27.0.5" | ||
7495 | + resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-27.0.5.tgz#6e3b9e8e193685372baff771ba34af631fe4d4d5" | ||
7496 | + integrity sha512-H1yFYdgnL1vXvDqMrnDStH6yHFdMEuzYQYc71SnC/IJnuuhW6J16w8GWG1P+qGd3Ag3sQHjbRr0TcwEo/vGS+g== | ||
7447 | dependencies: | 7497 | dependencies: |
7448 | "@babel/core" "^7.7.2" | 7498 | "@babel/core" "^7.7.2" |
7449 | "@babel/generator" "^7.7.2" | 7499 | "@babel/generator" "^7.7.2" |
@@ -7451,7 +7501,7 @@ jest-snapshot@^27.0.4: | @@ -7451,7 +7501,7 @@ jest-snapshot@^27.0.4: | ||
7451 | "@babel/plugin-syntax-typescript" "^7.7.2" | 7501 | "@babel/plugin-syntax-typescript" "^7.7.2" |
7452 | "@babel/traverse" "^7.7.2" | 7502 | "@babel/traverse" "^7.7.2" |
7453 | "@babel/types" "^7.0.0" | 7503 | "@babel/types" "^7.0.0" |
7454 | - "@jest/transform" "^27.0.2" | 7504 | + "@jest/transform" "^27.0.5" |
7455 | "@jest/types" "^27.0.2" | 7505 | "@jest/types" "^27.0.2" |
7456 | "@types/babel__traverse" "^7.0.4" | 7506 | "@types/babel__traverse" "^7.0.4" |
7457 | "@types/prettier" "^2.1.5" | 7507 | "@types/prettier" "^2.1.5" |
@@ -7461,10 +7511,10 @@ jest-snapshot@^27.0.4: | @@ -7461,10 +7511,10 @@ jest-snapshot@^27.0.4: | ||
7461 | graceful-fs "^4.2.4" | 7511 | graceful-fs "^4.2.4" |
7462 | jest-diff "^27.0.2" | 7512 | jest-diff "^27.0.2" |
7463 | jest-get-type "^27.0.1" | 7513 | jest-get-type "^27.0.1" |
7464 | - jest-haste-map "^27.0.2" | 7514 | + jest-haste-map "^27.0.5" |
7465 | jest-matcher-utils "^27.0.2" | 7515 | jest-matcher-utils "^27.0.2" |
7466 | jest-message-util "^27.0.2" | 7516 | jest-message-util "^27.0.2" |
7467 | - jest-resolve "^27.0.4" | 7517 | + jest-resolve "^27.0.5" |
7468 | jest-util "^27.0.2" | 7518 | jest-util "^27.0.2" |
7469 | natural-compare "^1.4.0" | 7519 | natural-compare "^1.4.0" |
7470 | pretty-format "^27.0.2" | 7520 | pretty-format "^27.0.2" |
@@ -7525,14 +7575,14 @@ jest-worker@^27.0.2: | @@ -7525,14 +7575,14 @@ jest-worker@^27.0.2: | ||
7525 | merge-stream "^2.0.0" | 7575 | merge-stream "^2.0.0" |
7526 | supports-color "^8.0.0" | 7576 | supports-color "^8.0.0" |
7527 | 7577 | ||
7528 | -jest@^27.0.4: | ||
7529 | - version "27.0.4" | ||
7530 | - resolved "https://registry.npmjs.org/jest/-/jest-27.0.4.tgz#91d4d564b36bcf93b98dac1ab19f07089e670f53" | ||
7531 | - integrity sha512-Px1iKFooXgGSkk1H8dJxxBIrM3tsc5SIuI4kfKYK2J+4rvCvPGr/cXktxh0e9zIPQ5g09kOMNfHQEmusBUf/ZA== | 7578 | +jest@^27.0.5: |
7579 | + version "27.0.5" | ||
7580 | + resolved "https://registry.yarnpkg.com/jest/-/jest-27.0.5.tgz#141825e105514a834cc8d6e44670509e8d74c5f2" | ||
7581 | + integrity sha512-4NlVMS29gE+JOZvgmSAsz3eOjkSsHqjTajlIsah/4MVSmKvf3zFP/TvgcLoWe2UVHiE9KF741sReqhF0p4mqbQ== | ||
7532 | dependencies: | 7582 | dependencies: |
7533 | - "@jest/core" "^27.0.4" | 7583 | + "@jest/core" "^27.0.5" |
7534 | import-local "^3.0.2" | 7584 | import-local "^3.0.2" |
7535 | - jest-cli "^27.0.4" | 7585 | + jest-cli "^27.0.5" |
7536 | 7586 | ||
7537 | js-base64@^2.1.9: | 7587 | js-base64@^2.1.9: |
7538 | version "2.6.4" | 7588 | version "2.6.4" |
@@ -10288,10 +10338,10 @@ rollup-plugin-visualizer@5.5.0: | @@ -10288,10 +10338,10 @@ rollup-plugin-visualizer@5.5.0: | ||
10288 | source-map "^0.7.3" | 10338 | source-map "^0.7.3" |
10289 | yargs "^16.2.0" | 10339 | yargs "^16.2.0" |
10290 | 10340 | ||
10291 | -rollup@^2.38.5, rollup@^2.43.1, rollup@^2.51.2, rollup@^2.52.1: | ||
10292 | - version "2.52.1" | ||
10293 | - resolved "https://registry.npmjs.org/rollup/-/rollup-2.52.1.tgz#dd1cc178d70cf35c48d943fc06fdc32d546e6876" | ||
10294 | - integrity sha512-/SPqz8UGnp4P1hq6wc9gdTqA2bXQXGx13TtoL03GBm6qGRI6Hm3p4Io7GeiHNLl0BsQAne1JNYY+q/apcY933w== | 10341 | +rollup@^2.38.5, rollup@^2.43.1, rollup@^2.51.2, rollup@^2.52.2: |
10342 | + version "2.52.2" | ||
10343 | + resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.52.2.tgz#a7e90d10ddae3e8472c2857bd9f44b09ef34a47a" | ||
10344 | + integrity sha512-4RlFC3k2BIHlUsJ9mGd8OO+9Lm2eDF5P7+6DNQOp5sx+7N/1tFM01kELfbxlMX3MxT6owvLB1ln4S3QvvQlbUA== | ||
10295 | optionalDependencies: | 10345 | optionalDependencies: |
10296 | fsevents "~2.3.2" | 10346 | fsevents "~2.3.2" |
10297 | 10347 | ||
@@ -11181,9 +11231,9 @@ symbol-tree@^3.2.4: | @@ -11181,9 +11231,9 @@ symbol-tree@^3.2.4: | ||
11181 | resolved "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" | 11231 | resolved "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" |
11182 | integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== | 11232 | integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== |
11183 | 11233 | ||
11184 | -systemjs@^6.8.3: | 11234 | +systemjs@^6.10.1: |
11185 | version "6.10.1" | 11235 | version "6.10.1" |
11186 | - resolved "https://registry.npmjs.org/systemjs/-/systemjs-6.10.1.tgz#4a42a9f4ee8dc740c29dc9af631da819ae736c69" | 11236 | + resolved "https://registry.yarnpkg.com/systemjs/-/systemjs-6.10.1.tgz#4a42a9f4ee8dc740c29dc9af631da819ae736c69" |
11187 | integrity sha512-i2HiBOTIsm4GpjpiDHqTscZ/78htyTtdhpcbY2XPbIpsaNDIBA9vtxwIl8kSSnIRO0Zn7SHqvvILu3cMoXQuYw== | 11237 | integrity sha512-i2HiBOTIsm4GpjpiDHqTscZ/78htyTtdhpcbY2XPbIpsaNDIBA9vtxwIl8kSSnIRO0Zn7SHqvvILu3cMoXQuYw== |
11188 | 11238 | ||
11189 | table@^6.0.9, table@^6.6.0: | 11239 | table@^6.0.9, table@^6.6.0: |
@@ -12018,10 +12068,10 @@ v8-compile-cache@^2.0.3, v8-compile-cache@^2.3.0: | @@ -12018,10 +12068,10 @@ v8-compile-cache@^2.0.3, v8-compile-cache@^2.3.0: | ||
12018 | resolved "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" | 12068 | resolved "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" |
12019 | integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== | 12069 | integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== |
12020 | 12070 | ||
12021 | -v8-to-istanbul@^7.0.0: | ||
12022 | - version "7.1.2" | ||
12023 | - resolved "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-7.1.2.tgz#30898d1a7fa0c84d225a2c1434fb958f290883c1" | ||
12024 | - integrity sha512-TxNb7YEUwkLXCQYeudi6lgQ/SZrzNO4kMdlqVxaZPUIUjCv6iSSypUQX70kNBSERpQ8fk48+d61FXk+tgqcWow== | 12071 | +v8-to-istanbul@^8.0.0: |
12072 | + version "8.0.0" | ||
12073 | + resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-8.0.0.tgz#4229f2a99e367f3f018fa1d5c2b8ec684667c69c" | ||
12074 | + integrity sha512-LkmXi8UUNxnCC+JlH7/fsfsKr5AU110l+SYGJimWNkWhxbN5EyeOtm1MJ0hhvqMMOhGwBj1Fp70Yv9i+hX0QAg== | ||
12025 | dependencies: | 12075 | dependencies: |
12026 | "@types/istanbul-lib-coverage" "^2.0.1" | 12076 | "@types/istanbul-lib-coverage" "^2.0.1" |
12027 | convert-source-map "^1.6.0" | 12077 | convert-source-map "^1.6.0" |
@@ -12380,9 +12430,9 @@ vscode-uri@^3.0.2: | @@ -12380,9 +12430,9 @@ vscode-uri@^3.0.2: | ||
12380 | resolved "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.2.tgz#ecfd1d066cb8ef4c3a208decdbab9a8c23d055d0" | 12430 | resolved "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.2.tgz#ecfd1d066cb8ef4c3a208decdbab9a8c23d055d0" |
12381 | integrity sha512-jkjy6pjU1fxUvI51P+gCsxg1u2n8LSt0W6KrCNQceaziKzff74GoWmjVG46KieVzybO1sttPQmYfrwSHey7GUA== | 12431 | integrity sha512-jkjy6pjU1fxUvI51P+gCsxg1u2n8LSt0W6KrCNQceaziKzff74GoWmjVG46KieVzybO1sttPQmYfrwSHey7GUA== |
12382 | 12432 | ||
12383 | -vscode-vue-languageservice@^0.25.17: | 12433 | +vscode-vue-languageservice@^0.25.22: |
12384 | version "0.25.22" | 12434 | version "0.25.22" |
12385 | - resolved "https://registry.npmjs.org/vscode-vue-languageservice/-/vscode-vue-languageservice-0.25.22.tgz#e7ac55bbf8dc2d4529c0603e833a59afaa1ad49b" | 12435 | + resolved "https://registry.yarnpkg.com/vscode-vue-languageservice/-/vscode-vue-languageservice-0.25.22.tgz#e7ac55bbf8dc2d4529c0603e833a59afaa1ad49b" |
12386 | integrity sha512-g9AipU1T7AON/rAJ5+pyYmWZD/V+0CTSqRSPMaK/eRaYxLNfrXXLgankoNhqP5XyHFQsYbxMJ6mAg3d0Vy3WZw== | 12436 | integrity sha512-g9AipU1T7AON/rAJ5+pyYmWZD/V+0CTSqRSPMaK/eRaYxLNfrXXLgankoNhqP5XyHFQsYbxMJ6mAg3d0Vy3WZw== |
12387 | dependencies: | 12437 | dependencies: |
12388 | "@starptech/prettyhtml" "^0.10.0" | 12438 | "@starptech/prettyhtml" "^0.10.0" |
@@ -12440,19 +12490,19 @@ vue-json-pretty@^2.0.2: | @@ -12440,19 +12490,19 @@ vue-json-pretty@^2.0.2: | ||
12440 | resolved "https://registry.npmjs.org/vue-json-pretty/-/vue-json-pretty-2.0.2.tgz#cb8f559af15ea3a2ee53b2742672c7791826d6a3" | 12490 | resolved "https://registry.npmjs.org/vue-json-pretty/-/vue-json-pretty-2.0.2.tgz#cb8f559af15ea3a2ee53b2742672c7791826d6a3" |
12441 | integrity sha512-Vn7SX3XR9cfvGRNoTDNID89GmvVUMb7/fLUX3C3n0Qptga0N7hp7Zwspui1I1XN5pE+PeoVghCSYty+bi8KnjA== | 12491 | integrity sha512-Vn7SX3XR9cfvGRNoTDNID89GmvVUMb7/fLUX3C3n0Qptga0N7hp7Zwspui1I1XN5pE+PeoVghCSYty+bi8KnjA== |
12442 | 12492 | ||
12443 | -vue-router@^4.0.9: | ||
12444 | - version "4.0.9" | ||
12445 | - resolved "https://registry.npmjs.org/vue-router/-/vue-router-4.0.9.tgz#248496941b79c4c1010f6ebfcf235cd4267d85da" | ||
12446 | - integrity sha512-i3IaZJ57YeMbRHQlqKyXdUMr5NzTCcJkn3f8u38TsZjYWtGcd3IX2zRd3389SCOwuRf11mgfHAyngR6FVDE9og== | 12493 | +vue-router@^4.0.10: |
12494 | + version "4.0.10" | ||
12495 | + resolved "https://registry.yarnpkg.com/vue-router/-/vue-router-4.0.10.tgz#ec8fda032949b2a31d3273170f8f376e86eb52ac" | ||
12496 | + integrity sha512-YbPf6QnZpyyWfnk7CUt2Bme+vo7TLfg1nGZNkvYqKYh4vLaFw6Gn8bPGdmt5m4qrGnKoXLqc4htAsd3dIukICA== | ||
12447 | dependencies: | 12497 | dependencies: |
12448 | "@vue/devtools-api" "^6.0.0-beta.14" | 12498 | "@vue/devtools-api" "^6.0.0-beta.14" |
12449 | 12499 | ||
12450 | -vue-tsc@^0.1.7: | ||
12451 | - version "0.1.7" | ||
12452 | - resolved "https://registry.npmjs.org/vue-tsc/-/vue-tsc-0.1.7.tgz#ff4e2b0a3302564f0103339ca5a17669801a4796" | ||
12453 | - integrity sha512-wQfgo8ZAaBN5mo27cRYQUnOsgR6UIp197w1cNlgukzaD3Mj/GEjwAPuZ6hxpIZiPewLRKNp60SpPM78iuexHQg== | 12500 | +vue-tsc@^0.2.0: |
12501 | + version "0.2.0" | ||
12502 | + resolved "https://registry.yarnpkg.com/vue-tsc/-/vue-tsc-0.2.0.tgz#5441a3f9610137e5830f4fca8ee89e92ab16acb6" | ||
12503 | + integrity sha512-PNnK3hxMwi1k5UmXyZq2Nv/fprgne3V1oyh5pWzkLPI5XMd2+ed4N4pFF/cyziXw5SDYDYnrw+Nkt5o/cUXTnw== | ||
12454 | dependencies: | 12504 | dependencies: |
12455 | - vscode-vue-languageservice "^0.25.17" | 12505 | + vscode-vue-languageservice "^0.25.22" |
12456 | 12506 | ||
12457 | vue-types@^3.0.0, vue-types@^3.0.2: | 12507 | vue-types@^3.0.0, vue-types@^3.0.2: |
12458 | version "3.0.2" | 12508 | version "3.0.2" |
@@ -12463,7 +12513,7 @@ vue-types@^3.0.0, vue-types@^3.0.2: | @@ -12463,7 +12513,7 @@ vue-types@^3.0.0, vue-types@^3.0.2: | ||
12463 | 12513 | ||
12464 | vue@3.0.11: | 12514 | vue@3.0.11: |
12465 | version "3.0.11" | 12515 | version "3.0.11" |
12466 | - resolved "https://registry.npmjs.org/vue/-/vue-3.0.11.tgz#c82f9594cbf4dcc869241d4c8dd3e08d9a8f4b5f" | 12516 | + resolved "https://registry.yarnpkg.com/vue/-/vue-3.0.11.tgz#c82f9594cbf4dcc869241d4c8dd3e08d9a8f4b5f" |
12467 | integrity sha512-3/eUi4InQz8MPzruHYSTQPxtM3LdZ1/S/BvaU021zBnZi0laRUyH6pfuE4wtUeLvI8wmUNwj5wrZFvbHUXL9dw== | 12517 | integrity sha512-3/eUi4InQz8MPzruHYSTQPxtM3LdZ1/S/BvaU021zBnZi0laRUyH6pfuE4wtUeLvI8wmUNwj5wrZFvbHUXL9dw== |
12468 | dependencies: | 12518 | dependencies: |
12469 | "@vue/compiler-dom" "3.0.11" | 12519 | "@vue/compiler-dom" "3.0.11" |