From fb4a3229de54f49052cefe60d3cb204dae0c44ba Mon Sep 17 00:00:00 2001 From: Michael Prentice Date: Tue, 6 Apr 2021 23:42:07 -0400 Subject: [PATCH] build: update to Angular and CLI v12 next.7 and Components v12 next.5 - fix typing change in `ActivatedRoute.fragment` - fix [breaking change](https://github.com/angular/angular-cli/pull/20361) to no longer allow the styles `bundleName` to include a path in the ng build config --- angular.json | 16 +- package.json | 38 +- .../table-of-contents/table-of-contents.ts | 10 +- .../shared/theme-picker/theme-picker.spec.ts | 3 +- src/app/shared/theme-picker/theme-picker.ts | 2 +- src/assets/stack-blitz-tests/package.json | 4 +- src/assets/stack-blitz/package.json | 4 +- src/assets/versions.json | 2 +- yarn.lock | 677 +++++++++++------- 9 files changed, 450 insertions(+), 306 deletions(-) diff --git a/angular.json b/angular.json index 10f566657..c5b1bdb02 100644 --- a/angular.json +++ b/angular.json @@ -52,22 +52,22 @@ { "inject": false, "input": "src/styles/custom-themes/pink-bluegrey.scss", - "bundleName": "assets/pink-bluegrey" + "bundleName": "pink-bluegrey" }, { "inject": false, "input": "src/styles/custom-themes/deeppurple-amber.scss", - "bundleName": "assets/deeppurple-amber" + "bundleName": "deeppurple-amber" }, { "inject": false, "input": "src/styles/custom-themes/indigo-pink.scss", - "bundleName": "assets/indigo-pink" + "bundleName": "indigo-pink" }, { "inject": false, "input": "src/styles/custom-themes/purple-green.scss", - "bundleName": "assets/purple-green" + "bundleName": "purple-green" } ], "stylePreprocessorOptions": { @@ -136,22 +136,22 @@ { "inject": false, "input": "src/styles/custom-themes/pink-bluegrey.scss", - "bundleName": "assets/pink-bluegrey" + "bundleName": "pink-bluegrey" }, { "inject": false, "input": "src/styles/custom-themes/deeppurple-amber.scss", - "bundleName": "assets/deeppurple-amber" + "bundleName": "deeppurple-amber" }, { "inject": false, "input": "src/styles/custom-themes/indigo-pink.scss", - "bundleName": "assets/indigo-pink" + "bundleName": "indigo-pink" }, { "inject": false, "input": "src/styles/custom-themes/purple-green.scss", - "bundleName": "assets/purple-green" + "bundleName": "purple-green" } ], "stylePreprocessorOptions": { diff --git a/package.json b/package.json index c270018b6..d6bb12bb3 100644 --- a/package.json +++ b/package.json @@ -34,22 +34,22 @@ }, "private": true, "dependencies": { - "@angular/animations": "^12.0.0-next.5", - "@angular/cdk": "^12.0.0-next.4", - "@angular/cdk-experimental": "^12.0.0-next.4", - "@angular/common": "^12.0.0-next.5", - "@angular/compiler": "^12.0.0-next.5", + "@angular/animations": "^12.0.0-next.7", + "@angular/cdk": "^12.0.0-next.5", + "@angular/cdk-experimental": "^12.0.0-next.5", + "@angular/common": "^12.0.0-next.7", + "@angular/compiler": "^12.0.0-next.7", "@angular/components-examples": "angular/material2-docs-content#master", - "@angular/core": "^12.0.0-next.5", - "@angular/forms": "^12.0.0-next.5", - "@angular/google-maps": "^12.0.0-next.4", - "@angular/material": "^12.0.0-next.4", - "@angular/material-experimental": "^12.0.0-next.4", - "@angular/material-moment-adapter": "^12.0.0-next.4", - "@angular/platform-browser": "^12.0.0-next.5", - "@angular/platform-browser-dynamic": "^12.0.0-next.5", - "@angular/router": "^12.0.0-next.5", - "@angular/youtube-player": "^12.0.0-next.4", + "@angular/core": "^12.0.0-next.7", + "@angular/forms": "^12.0.0-next.7", + "@angular/google-maps": "^12.0.0-next.5", + "@angular/material": "^12.0.0-next.5", + "@angular/material-experimental": "^12.0.0-next.5", + "@angular/material-moment-adapter": "^12.0.0-next.5", + "@angular/platform-browser": "^12.0.0-next.7", + "@angular/platform-browser-dynamic": "^12.0.0-next.7", + "@angular/router": "^12.0.0-next.7", + "@angular/youtube-player": "^12.0.0-next.5", "material-components-web": "10.0.0-canary.2ed2d829b.0", "moment": "^2.29.1", "rxjs": "^6.6.6", @@ -57,10 +57,10 @@ "zone.js": "~0.11.4" }, "devDependencies": { - "@angular-devkit/build-angular": "^0.1200.0-next.5", - "@angular/cli": "^12.0.0-next.5", - "@angular/compiler-cli": "^12.0.0-next.5", - "@angular/localize": "^12.0.0-next.5", + "@angular-devkit/build-angular": "^0.1200.0-next.7", + "@angular/cli": "^12.0.0-next.7", + "@angular/compiler-cli": "^12.0.0-next.7", + "@angular/localize": "^12.0.0-next.7", "@types/imagemin": "^7.0.0", "@types/jasmine": "^3.6.6", "@types/node": "^12.20.6", diff --git a/src/app/shared/table-of-contents/table-of-contents.ts b/src/app/shared/table-of-contents/table-of-contents.ts index 970200f54..f65a418fd 100644 --- a/src/app/shared/table-of-contents/table-of-contents.ts +++ b/src/app/shared/table-of-contents/table-of-contents.ts @@ -60,11 +60,13 @@ export class TableOfContents implements OnInit, AfterViewInit, OnDestroy { })); this.subscriptions.add(this._route.fragment.subscribe(fragment => { - this._urlFragment = fragment; + if (fragment != null) { + this._urlFragment = fragment; - const target = document.getElementById(this._urlFragment); - if (target) { - target.scrollIntoView(); + const target = document.getElementById(this._urlFragment); + if (target) { + target.scrollIntoView(); + } } })); } diff --git a/src/app/shared/theme-picker/theme-picker.spec.ts b/src/app/shared/theme-picker/theme-picker.spec.ts index 1a94b7396..2f4039866 100644 --- a/src/app/shared/theme-picker/theme-picker.spec.ts +++ b/src/app/shared/theme-picker/theme-picker.spec.ts @@ -2,7 +2,6 @@ import {waitForAsync, TestBed} from '@angular/core/testing'; import {ThemePicker, ThemePickerModule} from './theme-picker'; import {DocsAppTestingModule} from '../../testing/testing-module'; - describe('ThemePicker', () => { beforeEach(waitForAsync(() => { TestBed.configureTestingModule({ @@ -17,6 +16,6 @@ describe('ThemePicker', () => { spyOn(component.styleManager, 'setStyle'); component.selectTheme(name); expect(component.styleManager.setStyle).toHaveBeenCalled(); - expect(component.styleManager.setStyle).toHaveBeenCalledWith('theme', `assets/${name}.css`); + expect(component.styleManager.setStyle).toHaveBeenCalledWith('theme', `${name}.css`); }); }); diff --git a/src/app/shared/theme-picker/theme-picker.ts b/src/app/shared/theme-picker/theme-picker.ts index 3c8f88660..b8f3927e5 100644 --- a/src/app/shared/theme-picker/theme-picker.ts +++ b/src/app/shared/theme-picker/theme-picker.ts @@ -104,7 +104,7 @@ export class ThemePicker implements OnInit, OnDestroy { if (theme.isDefault) { this.styleManager.removeStyle('theme'); } else { - this.styleManager.setStyle('theme', `assets/${theme.name}.css`); + this.styleManager.setStyle('theme', `${theme.name}.css`); } if (this.currentTheme) { diff --git a/src/assets/stack-blitz-tests/package.json b/src/assets/stack-blitz-tests/package.json index c6d089cba..382258af0 100644 --- a/src/assets/stack-blitz-tests/package.json +++ b/src/assets/stack-blitz-tests/package.json @@ -29,8 +29,8 @@ "zone.js": "^0.11.4" }, "devDependencies": { - "@angular-devkit/build-angular": "0.1200.0-next.5", - "@angular/cli": "^12.0.0-next.5", + "@angular-devkit/build-angular": "0.1200.0-next.7", + "@angular/cli": "^12.0.0-next.7", "@angular/compiler-cli": "^12.0.0-next.0", "@angular/language-service": "^12.0.0-next.0", "@angular/localize": "^12.0.0-next.0", diff --git a/src/assets/stack-blitz/package.json b/src/assets/stack-blitz/package.json index aaa9b0850..b7e6e751c 100644 --- a/src/assets/stack-blitz/package.json +++ b/src/assets/stack-blitz/package.json @@ -29,8 +29,8 @@ "zone.js": "^0.11.4" }, "devDependencies": { - "@angular-devkit/build-angular": "^0.1200.0-next.5", - "@angular/cli": "^12.0.0-next.5", + "@angular-devkit/build-angular": "^0.1200.0-next.7", + "@angular/cli": "^12.0.0-next.7", "@angular/compiler-cli": "^12.0.0-next.0", "@angular/language-service": "^12.0.0-next.0", "@angular/localize": "^12.0.0-next.0", diff --git a/src/assets/versions.json b/src/assets/versions.json index d1f9b4edd..b24d4a891 100644 --- a/src/assets/versions.json +++ b/src/assets/versions.json @@ -29,6 +29,6 @@ }, { "url": "https://next.material.angular.io/", - "title": "12.0.0-next.4" + "title": "12.0.0-next.5" } ] diff --git a/yarn.lock b/yarn.lock index 7370c7ace..960e8714e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,42 +2,42 @@ # yarn lockfile v1 -"@angular-devkit/architect@0.1200.0-next.5": - version "0.1200.0-next.5" - resolved "https://registry.yarnpkg.com/@angular-devkit/architect/-/architect-0.1200.0-next.5.tgz#7e213bd2001a6ea5b78fb687dff0d5696a76fc3a" - integrity sha512-1s4fBijAyoymeYLgDJoVUPcSlWpBzEz85dVBQngEzkh/qhi81IixoTu5U6K9ti29wvuna0jEenSJaTYKxVN/jA== - dependencies: - "@angular-devkit/core" "12.0.0-next.5" - rxjs "6.6.6" - -"@angular-devkit/build-angular@^0.1200.0-next.5": - version "0.1200.0-next.5" - resolved "https://registry.yarnpkg.com/@angular-devkit/build-angular/-/build-angular-0.1200.0-next.5.tgz#6b4fbfc3ed7fcfc19c856c95589e262609d91ef9" - integrity sha512-6o1nVESDMTj+QQO2Ne1XCrfNCfs8f2LiZLjBjROiSTU3z15CAk44SidGe1HAB8Szg614PrfcbetG5NBMwaoo2g== - dependencies: - "@angular-devkit/architect" "0.1200.0-next.5" - "@angular-devkit/build-optimizer" "0.1200.0-next.5" - "@angular-devkit/build-webpack" "0.1200.0-next.5" - "@angular-devkit/core" "12.0.0-next.5" - "@babel/core" "7.13.8" +"@angular-devkit/architect@0.1200.0-next.7": + version "0.1200.0-next.7" + resolved "https://registry.yarnpkg.com/@angular-devkit/architect/-/architect-0.1200.0-next.7.tgz#e9d447fff59ff82e4a5697fd67d26ff4802175f0" + integrity sha512-OVfpHClaVCmIGTSSwqscNLwXNZ+2CusggQMJQUfhhv+3Mi9ji2Ix1wLGrHUAj4ryhArw+EFKj+o7o3ETyMEjfg== + dependencies: + "@angular-devkit/core" "12.0.0-next.7" + rxjs "6.6.7" + +"@angular-devkit/build-angular@^0.1200.0-next.7": + version "0.1200.0-next.7" + resolved "https://registry.yarnpkg.com/@angular-devkit/build-angular/-/build-angular-0.1200.0-next.7.tgz#3010f679159ec49847d437377d43c6c3928dd8f3" + integrity sha512-ChpWgGgVKerOVbQg2L3xzGVIYgI8rMTDkEh9CgvWc5xcQvWy5xioCKkGdFnfsy/Ew/bMwmvmGszdTzG1756ArA== + dependencies: + "@angular-devkit/architect" "0.1200.0-next.7" + "@angular-devkit/build-optimizer" "0.1200.0-next.7" + "@angular-devkit/build-webpack" "0.1200.0-next.7" + "@angular-devkit/core" "12.0.0-next.7" + "@babel/core" "7.13.13" "@babel/generator" "7.13.9" "@babel/plugin-transform-async-to-generator" "7.13.0" - "@babel/plugin-transform-runtime" "7.13.9" - "@babel/preset-env" "7.13.9" - "@babel/runtime" "7.13.9" + "@babel/plugin-transform-runtime" "7.13.10" + "@babel/preset-env" "7.13.12" + "@babel/runtime" "7.13.10" "@babel/template" "7.12.13" "@discoveryjs/json-ext" "0.5.2" "@jsdevtools/coverage-istanbul-loader" "3.0.5" - "@ngtools/webpack" "12.0.0-next.5" + "@ngtools/webpack" "12.0.0-next.7" ansi-colors "4.1.1" babel-loader "8.2.2" browserslist "^4.9.1" - cacache "15.0.5" + cacache "15.0.6" caniuse-lite "^1.0.30001032" circular-dependency-plugin "5.2.2" copy-webpack-plugin "6.3.2" - core-js "3.9.1" - critters "0.0.9" + core-js "3.10.0" + critters "0.0.10" css-loader "5.0.2" cssnano "4.1.10" find-cache-dir "3.3.1" @@ -48,26 +48,26 @@ karma-source-map-support "1.4.0" less "4.1.1" less-loader "7.3.0" - license-webpack-plugin "2.3.15" + license-webpack-plugin "2.3.16" loader-utils "2.0.0" - mini-css-extract-plugin "1.3.9" + mini-css-extract-plugin "1.4.0" minimatch "3.0.4" - open "8.0.2" + open "8.0.4" ora "5.4.0" parse5-html-rewriting-stream "6.0.1" pnp-webpack-plugin "1.6.4" - postcss "8.2.8" - postcss-import "14.0.0" + postcss "8.2.9" + postcss-import "14.0.1" postcss-loader "4.2.0" postcss-preset-env "6.7.0" raw-loader "4.0.2" regenerator-runtime "0.13.7" resolve-url-loader "3.1.2" rimraf "3.0.2" - rxjs "6.6.6" + rxjs "6.6.7" sass "1.32.8" sass-loader "10.1.1" - semver "7.3.4" + semver "7.3.5" source-map "0.7.3" source-map-loader "1.1.3" source-map-support "0.5.19" @@ -86,10 +86,10 @@ webpack-subresource-integrity "1.5.2" worker-plugin "5.0.0" -"@angular-devkit/build-optimizer@0.1200.0-next.5": - version "0.1200.0-next.5" - resolved "https://registry.yarnpkg.com/@angular-devkit/build-optimizer/-/build-optimizer-0.1200.0-next.5.tgz#ff5f7d2a3a79abf47261a7f133e1bce22869157f" - integrity sha512-WEqxQeOvf/M48ReGGMR3/69MLnlG0CyFQEjjiv3kCavNOOnYrQd4NEjzbCYb55Q2RTotZqOLy4XZ33uZ9oHwsg== +"@angular-devkit/build-optimizer@0.1200.0-next.7": + version "0.1200.0-next.7" + resolved "https://registry.yarnpkg.com/@angular-devkit/build-optimizer/-/build-optimizer-0.1200.0-next.7.tgz#90c01d6f74896244afc986dbfcc38e2b50f01929" + integrity sha512-hJM4NO3N535ZxUH0RAdfhPmROu5Q8TIjh5UlTCzSDdWfeU4Udx4JvBggE0BfYx6l+U6pMfNpAxUtKykK4q48ew== dependencies: loader-utils "2.0.0" source-map "0.7.3" @@ -97,96 +97,94 @@ typescript "4.2.3" webpack-sources "2.2.0" -"@angular-devkit/build-webpack@0.1200.0-next.5": - version "0.1200.0-next.5" - resolved "https://registry.yarnpkg.com/@angular-devkit/build-webpack/-/build-webpack-0.1200.0-next.5.tgz#72fa79c45a5f65072fc46efeafde81fa137f364b" - integrity sha512-uFwk+IuYwdpl4Ev9cnGsD/2GCbNmqvTOLBdQseLmTt6EU2fkk/M40GJe9wjIYJS+qys2/ezdiRZ4Xd6Vr0z7vQ== +"@angular-devkit/build-webpack@0.1200.0-next.7": + version "0.1200.0-next.7" + resolved "https://registry.yarnpkg.com/@angular-devkit/build-webpack/-/build-webpack-0.1200.0-next.7.tgz#abaf04efa8b3b3f1162fbf57ca191955f561df6b" + integrity sha512-pyi+fDCsZUabmUxuuZOszF0GwW1kIj7XlP3LyV3WsVbQGj3yvZBM7BW8nHok/tAjvmGNqOZJCzqbBRrx2H84Cg== dependencies: - "@angular-devkit/architect" "0.1200.0-next.5" - "@angular-devkit/core" "12.0.0-next.5" - rxjs "6.6.6" + "@angular-devkit/architect" "0.1200.0-next.7" + rxjs "6.6.7" -"@angular-devkit/core@12.0.0-next.5": - version "12.0.0-next.5" - resolved "https://registry.yarnpkg.com/@angular-devkit/core/-/core-12.0.0-next.5.tgz#d553f35db6ccb1e1c75b67f6c478eb339f9a618b" - integrity sha512-Jo9aAhrnM4ZpUpW1y42O2FGZTPhLtW6KokGF1E6joBT4mj5JY9KXOIRh8nvvJ+gusiXsOFV4FW+gSJwAU26q4g== +"@angular-devkit/core@12.0.0-next.7": + version "12.0.0-next.7" + resolved "https://registry.yarnpkg.com/@angular-devkit/core/-/core-12.0.0-next.7.tgz#51c628d4dca99e3a562c2df523ee56abe544fee5" + integrity sha512-Ar9U/RMkhkCK+C9sfqqtnddCqF0rR2sB6U4iCC/FNunbKAzzyv2pUUIWXG3c9kuFDM2BRmy7obiO8eYrY4VnJQ== dependencies: ajv "6.12.6" fast-json-stable-stringify "2.1.0" magic-string "0.25.7" - rxjs "6.6.6" + rxjs "6.6.7" source-map "0.7.3" -"@angular-devkit/schematics@12.0.0-next.5": - version "12.0.0-next.5" - resolved "https://registry.yarnpkg.com/@angular-devkit/schematics/-/schematics-12.0.0-next.5.tgz#28280be3ab4eb39e1112b81c1939b43f45cd87a3" - integrity sha512-rXFy/0Apvh1Tiw0iR/CvIUHwQSdEzj6jS6IxFJDrEeJffeBAUAPPnogcZ2fZetVpU9XsurmkkhkAh8QzhJnTgw== +"@angular-devkit/schematics@12.0.0-next.7": + version "12.0.0-next.7" + resolved "https://registry.yarnpkg.com/@angular-devkit/schematics/-/schematics-12.0.0-next.7.tgz#a8e6267b82439267e45f4397155852b1508018f4" + integrity sha512-YZ5d4yVOBIedJxihzbrAOWMxQnZwCPV/K7H6lRbewapbgtGl1L57LsLYsmlr8JDeFUn79H6xtscXlQeWPYr/bQ== dependencies: - "@angular-devkit/core" "12.0.0-next.5" + "@angular-devkit/core" "12.0.0-next.7" ora "5.4.0" - rxjs "6.6.6" + rxjs "6.6.7" -"@angular/animations@^12.0.0-next.5": - version "12.0.0-next.5" - resolved "https://registry.yarnpkg.com/@angular/animations/-/animations-12.0.0-next.5.tgz#621d98140eca608144b7ffe8a8f93c875ca9da53" - integrity sha512-mxlB2qZEf576ErsNhbdLO1a+mqcALHbQUkjDQtUda7ZO41RV01HbE9UuEb1y6WYfiVU7yYze6kPdZGKH36zWLQ== +"@angular/animations@^12.0.0-next.7": + version "12.0.0-next.7" + resolved "https://registry.yarnpkg.com/@angular/animations/-/animations-12.0.0-next.7.tgz#1a8ace2cade4b91e221a0f89b5c30274afce0dd8" + integrity sha512-9sFO2qqFAPsTECCimgq1pc+dPJfQOKaoHexYza9koG16BFL1n1F/09FFDaog4Ex0ENmSFZnINLzwjLjXUiiK3A== dependencies: tslib "^2.1.0" -"@angular/cdk-experimental@^12.0.0-next.4": - version "12.0.0-next.4" - resolved "https://registry.yarnpkg.com/@angular/cdk-experimental/-/cdk-experimental-12.0.0-next.4.tgz#e311b294640e8ba4f581df3420c7f848b11f827a" - integrity sha512-uQCI7VbgpHDsFdmbAoOLi06JiKNjtmZ7oSYw89uOaivQ0js5IjN4xmzNq9mWKdH3q7HpJUZoSz45miKmxGQLUw== +"@angular/cdk-experimental@^12.0.0-next.5": + version "12.0.0-next.5" + resolved "https://registry.yarnpkg.com/@angular/cdk-experimental/-/cdk-experimental-12.0.0-next.5.tgz#54b5b88722670e389d357e7664145a130f1e447e" + integrity sha512-bFl5WJZU9BAFgCK1xTxslPmFbj9TObjQTJ7CkJesmC+0zEm2TzVkE4spGNSPvzloW+VXwWywFwSa2CVGFaqukQ== dependencies: tslib "^2.1.0" -"@angular/cdk@^12.0.0-next.4": - version "12.0.0-next.4" - resolved "https://registry.yarnpkg.com/@angular/cdk/-/cdk-12.0.0-next.4.tgz#4839c90e311b450d7b66706cfc0d8dedabdc2eca" - integrity sha512-GL68UFS8bYloHTZuHzHBTPghNjA2r+k5x33Lj4Vl33DVDOCfm701u4eclkf5S2/PGIlyXxAZoZUUsa/KPBArrw== +"@angular/cdk@^12.0.0-next.5": + version "12.0.0-next.5" + resolved "https://registry.yarnpkg.com/@angular/cdk/-/cdk-12.0.0-next.5.tgz#8498669984d9249c146354cc9346ffdd4bf4eef7" + integrity sha512-qhZ3wNYUPg54T+3sDM4bv6yVSdJH+RWlM1FIZljLL15ix/7aqGCryhY5ta6Ku2RwOYT5q8P4DZyIQeM+6Y3sFQ== dependencies: tslib "^2.1.0" optionalDependencies: parse5 "^5.0.0" -"@angular/cli@^12.0.0-next.5": - version "12.0.0-next.5" - resolved "https://registry.yarnpkg.com/@angular/cli/-/cli-12.0.0-next.5.tgz#dffcd163cfe1c7227bde1702a2a6db3a161d67f8" - integrity sha512-1098GO0Tpzu8efFMwEKtsiMGYX0ByygEKriM2LkaEN3Yy2q3Z7VBu7A1vhvOPmSqdNN89SX/rq9tjM+BYzSyaQ== - dependencies: - "@angular-devkit/architect" "0.1200.0-next.5" - "@angular-devkit/core" "12.0.0-next.5" - "@angular-devkit/schematics" "12.0.0-next.5" - "@schematics/angular" "12.0.0-next.5" - "@schematics/update" "0.1200.0-next.5" +"@angular/cli@^12.0.0-next.7": + version "12.0.0-next.7" + resolved "https://registry.yarnpkg.com/@angular/cli/-/cli-12.0.0-next.7.tgz#ad7b5f4b650172ed9e35a40f5d0c77591eb58218" + integrity sha512-XOVGQGFM51RVZojrWZmnJmrGJVRfi4lw87rMR0y7MPdMjwhEsU/okkUIvHBqNDXuHlTYwRc1pydQyVe1Qx5SDA== + dependencies: + "@angular-devkit/architect" "0.1200.0-next.7" + "@angular-devkit/core" "12.0.0-next.7" + "@angular-devkit/schematics" "12.0.0-next.7" + "@schematics/angular" "12.0.0-next.7" "@yarnpkg/lockfile" "1.1.0" ansi-colors "4.1.1" debug "4.3.1" ini "2.0.0" inquirer "8.0.0" jsonc-parser "3.0.0" - npm-package-arg "8.1.1" - npm-pick-manifest "6.1.0" - open "8.0.2" + npm-package-arg "8.1.2" + npm-pick-manifest "6.1.1" + open "8.0.4" ora "5.4.0" - pacote "11.3.0" + pacote "11.3.1" resolve "1.20.0" rimraf "3.0.2" - semver "7.3.4" + semver "7.3.5" symbol-observable "3.0.0" uuid "8.3.2" -"@angular/common@^12.0.0-next.5": - version "12.0.0-next.5" - resolved "https://registry.yarnpkg.com/@angular/common/-/common-12.0.0-next.5.tgz#9c82f3e72b84fe89c733c0db4deae84296ff9bad" - integrity sha512-HfENXz4uVYC68bRSVR/yoCfIeklKIAOVzLw3pWN5nFnf2XKn+TtKstjXc1heoP8xDgX2MFJLOw0VLk2Qu53z/g== +"@angular/common@^12.0.0-next.7": + version "12.0.0-next.7" + resolved "https://registry.yarnpkg.com/@angular/common/-/common-12.0.0-next.7.tgz#e756e8f5ec2ba44ea0655ceef04d7c11e36f5981" + integrity sha512-NA5S78X1ATxfQvH52KK5mJm9P2lHdURsVjHQ3os/G3MYLJGCibM6SHqmSeiH+3fNKpoak1YMTw4jGMIls9N6hA== dependencies: tslib "^2.1.0" -"@angular/compiler-cli@^12.0.0-next.5": - version "12.0.0-next.5" - resolved "https://registry.yarnpkg.com/@angular/compiler-cli/-/compiler-cli-12.0.0-next.5.tgz#1cc2c994c5470a4e67c6488efdb9305a4786a94d" - integrity sha512-rIaw7T32N22pc5iAn9G4/E+HgX+yBVQkMwhQPCzM/oI89oggWSjRuWzfY3CqSraZbvdA59nLEgIHzM+aQtO/bg== +"@angular/compiler-cli@^12.0.0-next.7": + version "12.0.0-next.7" + resolved "https://registry.yarnpkg.com/@angular/compiler-cli/-/compiler-cli-12.0.0-next.7.tgz#7dba9ea4baba3d949794481f6af0146e4656042e" + integrity sha512-THU6l2yKnJdUAogQuhncAQKePft9gRuSjqh1dm9IA0+6G/0mC61jtTGjURCNuMtK4MgTTjGzzkqMlm3tEcc33Q== dependencies: "@babel/core" "^7.8.6" "@babel/types" "^7.8.6" @@ -202,23 +200,23 @@ source-map "^0.6.1" sourcemap-codec "^1.4.8" tslib "^2.1.0" - yargs "^16.1.1" + yargs "^16.2.0" "@angular/compiler@9.0.0": version "9.0.0" resolved "https://registry.yarnpkg.com/@angular/compiler/-/compiler-9.0.0.tgz#87e0bef4c369b6cadae07e3a4295778fc93799d5" integrity sha512-ctjwuntPfZZT2mNj2NDIVu51t9cvbhl/16epc5xEwyzyDt76pX9UgwvY+MbXrf/C/FWwdtmNtfP698BKI+9leQ== -"@angular/compiler@^12.0.0-next.5": - version "12.0.0-next.5" - resolved "https://registry.yarnpkg.com/@angular/compiler/-/compiler-12.0.0-next.5.tgz#3d7b1a0271296466f695cf0bcb40a9fd47a06a7e" - integrity sha512-rWKSnEOYUd1UCyqTDgtjH8OtsVuqcBrnWDz1t6/3v6Wxnr6VfqGV4vTzb7FAtbwvCF9n+Hrg5wn6+R78qGg71w== +"@angular/compiler@^12.0.0-next.7": + version "12.0.0-next.7" + resolved "https://registry.yarnpkg.com/@angular/compiler/-/compiler-12.0.0-next.7.tgz#e2559d8d520c29c869a53b38a8e141051999ddbe" + integrity sha512-r2Sb0zMNNxdtrMLJZparK8BNg7IsePHimBWPk98UtilTjaH8el8AWCNW8HmBjXgbOrgzLS6a8o8XSr2kJfl00g== dependencies: tslib "^2.1.0" "@angular/components-examples@angular/material2-docs-content#master": - version "12.0.0-next.4-sha-b8d83cb0f" - resolved "https://codeload.github.com/angular/material2-docs-content/tar.gz/c062c53e2ff2ba1460ef4623582a7229241e8f8b" + version "12.0.0-next.6-sha-212c02655" + resolved "https://codeload.github.com/angular/material2-docs-content/tar.gz/55d2483b24c31b74fc049b3e24bd996a78e7b36c" dependencies: tslib "^2.1.0" @@ -227,85 +225,85 @@ resolved "https://registry.yarnpkg.com/@angular/core/-/core-9.0.0.tgz#227dc53e1ac81824f998c6e76000b7efc522641e" integrity sha512-6Pxgsrf0qF9iFFqmIcWmjJGkkCaCm6V5QNnxMy2KloO3SDq6QuMVRbN9RtC8Urmo25LP+eZ6ZgYqFYpdD8Hd9w== -"@angular/core@^12.0.0-next.5": - version "12.0.0-next.5" - resolved "https://registry.yarnpkg.com/@angular/core/-/core-12.0.0-next.5.tgz#18597df4ea23d1bd781e62e85b72ce82b11cf452" - integrity sha512-UZBG4Lgvckteh3dM1f+lrJfianajIybHG4ttiLmh6XBGDObr55dzZQVlCjTqqFGVB1VJDjAIyHiJoqqxy9JNJQ== +"@angular/core@^12.0.0-next.7": + version "12.0.0-next.7" + resolved "https://registry.yarnpkg.com/@angular/core/-/core-12.0.0-next.7.tgz#424880157bfee0594d4dc497c116e76040a46c1b" + integrity sha512-o94gNrQvqilL8hss62Luz0ZjlfWa+aTLfVyImrS1mLHfUiASCH55s77+9UzQwRjvQ9KjpmQaMLfTT9o8ih4Eew== dependencies: tslib "^2.1.0" -"@angular/forms@^12.0.0-next.5": - version "12.0.0-next.5" - resolved "https://registry.yarnpkg.com/@angular/forms/-/forms-12.0.0-next.5.tgz#0fdd821d4b48ae7888df2cc781f41e0061e64504" - integrity sha512-Erp2gPIJU/TIgE8szcdZom4eetq9y/bmpqhMFAUrmQllyIvV9xTkqTaPEy44IO7rAMBT5Bcxk6gUimY2u+ObRg== +"@angular/forms@^12.0.0-next.7": + version "12.0.0-next.7" + resolved "https://registry.yarnpkg.com/@angular/forms/-/forms-12.0.0-next.7.tgz#3a27855b791cf1e1af49ef97963292a228789a31" + integrity sha512-u/Wy4rydT5MsXsXPtVKKNnbcSHScAdXvgIxjeOdEhPfLdUMY1Z+lAnuKEkMaOzps74+tbjO0IwXb/ZvlCJhhzA== dependencies: tslib "^2.1.0" -"@angular/google-maps@^12.0.0-next.4": - version "12.0.0-next.4" - resolved "https://registry.yarnpkg.com/@angular/google-maps/-/google-maps-12.0.0-next.4.tgz#61d5b7f93a48ef1bf081ed307e4e3474dc72d681" - integrity sha512-MIGC+PHSL88ymcZ8tkpyOuLxW7n6sZ1YU2ASVRIQ9tDne6DbKhDmDCJ5pV8rH2uaphd1Iz8ann8Z68dGgWTd5w== +"@angular/google-maps@^12.0.0-next.5": + version "12.0.0-next.5" + resolved "https://registry.yarnpkg.com/@angular/google-maps/-/google-maps-12.0.0-next.5.tgz#a02d02da748adb1b84e8564e3fa70aac84ba56e4" + integrity sha512-gYUwn/jpZ8GRePRUda9bPLPmV2NDS3uqp1qzd06MxoeEBCiqxx8OmpprfePC1xZ+B0evFdo26/etEyNnesJKBw== dependencies: "@types/googlemaps" "^3.43.1" tslib "^2.1.0" -"@angular/localize@^12.0.0-next.5": - version "12.0.0-next.5" - resolved "https://registry.yarnpkg.com/@angular/localize/-/localize-12.0.0-next.5.tgz#706e9e371dc224d7a4fbed397858d0962a097b40" - integrity sha512-wGgdaXw+4NAifBnaTTrYbzNuKFM3kA6dIhynEK1dklcwrjl1RNFENqs4jZxE0geDeWM/WaR6J+PnlbDJdTlAHg== +"@angular/localize@^12.0.0-next.7": + version "12.0.0-next.7" + resolved "https://registry.yarnpkg.com/@angular/localize/-/localize-12.0.0-next.7.tgz#942da9b8f8ddf6faafd992d6bb27e0bb2838530b" + integrity sha512-bI92xG0K3LLTeql0ymFu+dUk2kCRR2DL1FKUZhyREechaUc6OSmKO7/OBdQ8/yY89pwWCHZLvhKMdphNZZCELw== dependencies: "@babel/core" "7.8.3" glob "7.1.2" - yargs "^16.1.1" + yargs "^16.2.0" -"@angular/material-experimental@^12.0.0-next.4": - version "12.0.0-next.4" - resolved "https://registry.yarnpkg.com/@angular/material-experimental/-/material-experimental-12.0.0-next.4.tgz#d3c89894735ac8bf6164fff7bf091ed6db8f15a5" - integrity sha512-f3+2QIuAGKKAiIPznNjOgtbIlpjKp7kzDq479gykZ3POgLSYO+BLKbFVEGNyoXME4zMT+GvtDwDyWjfoZFFFPA== +"@angular/material-experimental@^12.0.0-next.5": + version "12.0.0-next.5" + resolved "https://registry.yarnpkg.com/@angular/material-experimental/-/material-experimental-12.0.0-next.5.tgz#fbb59da21819fd9ec5d0a3796ff40189db7f01bc" + integrity sha512-V+555/To/FaLlVBNGUNbZi5G1kzdl49ok1UbjS1YCkNXpOMkWiYpnc5gokyFnWWM6ijjt+DNpFKbmB1/C1xn+Q== dependencies: tslib "^2.1.0" -"@angular/material-moment-adapter@^12.0.0-next.4": - version "12.0.0-next.4" - resolved "https://registry.yarnpkg.com/@angular/material-moment-adapter/-/material-moment-adapter-12.0.0-next.4.tgz#ef72424d69b7957919cf1176c990af50fbd6a614" - integrity sha512-RwSjjYIbbTOqXSwtp1yBwXEMAwHt/+D6jnbbNppqt29jWQKYRsw3H39UDwTcsRTWu+FM0q/YGV19fpbYdGFlTw== +"@angular/material-moment-adapter@^12.0.0-next.5": + version "12.0.0-next.5" + resolved "https://registry.yarnpkg.com/@angular/material-moment-adapter/-/material-moment-adapter-12.0.0-next.5.tgz#5cec2c9b11cf55b6e315cae214357378f2670549" + integrity sha512-TQDpEqVZkBGDxP4i+lDl8kto5S7bQ0Xp6inhd9ppSGGXn0tg9nDdj7hE/ZBy+BGBX/Y5ofUxXSWOFQy+VrLs7g== dependencies: tslib "^2.1.0" -"@angular/material@^12.0.0-next.4": - version "12.0.0-next.4" - resolved "https://registry.yarnpkg.com/@angular/material/-/material-12.0.0-next.4.tgz#456b30bff5855ddafcff9fab6893da5a44a75906" - integrity sha512-Q+RhhlVdJW9L125f3Wrk5sNFasz59QGIRwdkul8fdU+yB25hlk9mQVJf8y2sTHW/k36ilMMwqziaN3Ujk3DFuQ== +"@angular/material@^12.0.0-next.5": + version "12.0.0-next.5" + resolved "https://registry.yarnpkg.com/@angular/material/-/material-12.0.0-next.5.tgz#a7892146621fa6c5d90966f2c751fcb273ee05d0" + integrity sha512-wnp2qaRPjXYyJYh0IRHRh+sO4noGalu4N28X5PoKa5xNMrpkI5Jlk1yukKfTz1zX5C0iTnJ6NgdXlmmPkux8fg== dependencies: tslib "^2.1.0" -"@angular/platform-browser-dynamic@^12.0.0-next.5": - version "12.0.0-next.5" - resolved "https://registry.yarnpkg.com/@angular/platform-browser-dynamic/-/platform-browser-dynamic-12.0.0-next.5.tgz#66444656b4a25cd6f798da8f89b8d1bf4d2634a7" - integrity sha512-ILDVSkMC5AWmJQLY6DQnjYqooZgcl1trt8nDNP4SXQhf+ndo7Wm+NNrmUhMLAuJ1xzkoLv7PtkY8CAtRRKXmig== +"@angular/platform-browser-dynamic@^12.0.0-next.7": + version "12.0.0-next.7" + resolved "https://registry.yarnpkg.com/@angular/platform-browser-dynamic/-/platform-browser-dynamic-12.0.0-next.7.tgz#b1c9cdeb55f0976dcc7ce385d5cf6c2eba2d4c61" + integrity sha512-ObGt1aEVLk48nB12tCzwltXV/PSwkjCs46GhGXCRY9xiEfmoe0oREjbyp1lC/STzbwj4MYB8mZvMWOyPSXYOzQ== dependencies: tslib "^2.1.0" -"@angular/platform-browser@^12.0.0-next.5": - version "12.0.0-next.5" - resolved "https://registry.yarnpkg.com/@angular/platform-browser/-/platform-browser-12.0.0-next.5.tgz#0eb5024c4cf88567ff201b599e3f6a3c6a5cddc8" - integrity sha512-5nTVflViIEbR6o4GHnbUtkXEIHXqNmDuWA/GhSdZpAirImFZBS0UCXXuuaRJ7NHh4G/3ikfb/6iN+eDJOV5j2w== +"@angular/platform-browser@^12.0.0-next.7": + version "12.0.0-next.7" + resolved "https://registry.yarnpkg.com/@angular/platform-browser/-/platform-browser-12.0.0-next.7.tgz#622cd11853d70343ca027d2ad0aa07630bc353cd" + integrity sha512-qm1ICtGHnxK17YuJuWTq2HzsoRQpqs0igeH8Zg2epnj7QO5qj9qIv7a7FoylH3wr1s9oL5cmsarLPorT/Zasnw== dependencies: tslib "^2.1.0" -"@angular/router@^12.0.0-next.5": - version "12.0.0-next.5" - resolved "https://registry.yarnpkg.com/@angular/router/-/router-12.0.0-next.5.tgz#dbda639532c65d766019b020bba2a1f68fee1f21" - integrity sha512-JL+wLft5QVjVoewupWuXDpJW3dMCayoxHYpPqPzwNZjBK3E0CJqAW79Ifqm1+r6m7ep61d990caULmc0F0nyFw== +"@angular/router@^12.0.0-next.7": + version "12.0.0-next.7" + resolved "https://registry.yarnpkg.com/@angular/router/-/router-12.0.0-next.7.tgz#d2fe77eb55708a8f74d340742f8aca29eff55f62" + integrity sha512-TR8D6qtOcGxPSCMYERySgGFWS0YzpBVZOqFDhxOzLHoEKT0QQ1/Hmo8GevnRsCu0msyd2hdLgnS+0m0Skzo8/A== dependencies: tslib "^2.1.0" -"@angular/youtube-player@^12.0.0-next.4": - version "12.0.0-next.4" - resolved "https://registry.yarnpkg.com/@angular/youtube-player/-/youtube-player-12.0.0-next.4.tgz#6ca6e2476a0ccf9773d51c306b87cf3176f2dc96" - integrity sha512-7XZ7YKuFZRFVdHJHIvgG9BtcoJKPpXPSxUKJU2VYA1NB8uwdy06GSgxlJFbWRJfbLLOH2DYq4R48FTZqDtztog== +"@angular/youtube-player@^12.0.0-next.5": + version "12.0.0-next.5" + resolved "https://registry.yarnpkg.com/@angular/youtube-player/-/youtube-player-12.0.0-next.5.tgz#2f13f0c93befb03c64c28eba5f356d71d3e8a3ef" + integrity sha512-QXp7kk5qTcPFCvYJwjQPibGgks70S3D6zO2bq8YdjDlj6y687yyg8KzcnXtMfyJ7gx7SsYUSQSk7WV28s0kuBQ== dependencies: - "@types/youtube" "^0.0.38" + "@types/youtube" "^0.0.42" tslib "^2.1.0" "@apidevtools/json-schema-ref-parser@^9.0.3": @@ -336,20 +334,25 @@ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.13.8.tgz#5b783b9808f15cef71547f1b691f34f8ff6003a6" integrity sha512-EaI33z19T4qN3xLXsGf48M2cDqa6ei9tPZlfLdb2HC+e/cFtREiRd8hdSqDbwdLB0/+gLwqJmCYASH0z2bUdog== -"@babel/core@7.13.8": - version "7.13.8" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.13.8.tgz#c191d9c5871788a591d69ea1dc03e5843a3680fb" - integrity sha512-oYapIySGw1zGhEFRd6lzWNLWFX2s5dA/jm+Pw/+59ZdXtjyIuwlXbrId22Md0rgZVop+aVoqow2riXhBLNyuQg== +"@babel/compat-data@^7.13.12": + version "7.13.12" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.13.12.tgz#a8a5ccac19c200f9dd49624cac6e19d7be1236a1" + integrity sha512-3eJJ841uKxeV8dcN/2yGEUy+RfgQspPEgQat85umsE1rotuquQ2AbIub4S6j7c50a2d+4myc+zSlnXeIHrOnhQ== + +"@babel/core@7.13.13": + version "7.13.13" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.13.13.tgz#bc44c4a2be2288ec4ddf56b66fc718019c76ac29" + integrity sha512-1xEs9jZAyKIouOoCmpsgk/I26PoKyvzQ2ixdRpRzfbcp1fL+ozw7TUgdDgwonbTovqRaTfRh50IXuw4QrWO0GA== dependencies: "@babel/code-frame" "^7.12.13" - "@babel/generator" "^7.13.0" - "@babel/helper-compilation-targets" "^7.13.8" - "@babel/helper-module-transforms" "^7.13.0" - "@babel/helpers" "^7.13.0" - "@babel/parser" "^7.13.4" + "@babel/generator" "^7.13.9" + "@babel/helper-compilation-targets" "^7.13.13" + "@babel/helper-module-transforms" "^7.13.12" + "@babel/helpers" "^7.13.10" + "@babel/parser" "^7.13.13" "@babel/template" "^7.12.13" - "@babel/traverse" "^7.13.0" - "@babel/types" "^7.13.0" + "@babel/traverse" "^7.13.13" + "@babel/types" "^7.13.13" convert-source-map "^1.7.0" debug "^4.1.0" gensync "^1.0.0-beta.2" @@ -401,7 +404,7 @@ semver "^5.4.1" source-map "^0.5.0" -"@babel/generator@7.13.9", "@babel/generator@^7.13.0": +"@babel/generator@7.13.9", "@babel/generator@^7.13.0", "@babel/generator@^7.13.9": version "7.13.9" resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.13.9.tgz#3a7aa96f9efb8e2be42d38d80e2ceb4c64d8de39" integrity sha512-mHOOmY0Axl/JCTkxTU6Lf5sWOg/v8nUa+Xkt4zMTftX0wqmb6Sh7J8gvcehBw7q0AhrhAR+FDacKjCZ2X8K+Sw== @@ -451,6 +454,16 @@ browserslist "^4.14.5" semver "^6.3.0" +"@babel/helper-compilation-targets@^7.13.10", "@babel/helper-compilation-targets@^7.13.13": + version "7.13.13" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.13.tgz#2b2972a0926474853f41e4adbc69338f520600e5" + integrity sha512-q1kcdHNZehBwD9jYPh3WyXcsFERi39X4I59I3NadciWtNDyZ6x+GboOxncFK0kXlKIv6BJm5acncehXWUjWQMQ== + dependencies: + "@babel/compat-data" "^7.13.12" + "@babel/helper-validator-option" "^7.12.17" + browserslist "^4.14.5" + semver "^6.3.0" + "@babel/helper-create-class-features-plugin@^7.13.0": version "7.13.10" resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.13.10.tgz#073b2bbb925a097643c6fc5770e5f13394e887c9" @@ -554,6 +567,13 @@ dependencies: "@babel/types" "^7.13.0" +"@babel/helper-member-expression-to-functions@^7.13.12": + version "7.13.12" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.12.tgz#dfe368f26d426a07299d8d6513821768216e6d72" + integrity sha512-48ql1CLL59aKbU94Y88Xgb2VFy7a95ykGRbJJaaVv+LX5U8wFpLfiGXJJGUozsmA1oEh/o5Bp60Voq7ACyA/Sw== + dependencies: + "@babel/types" "^7.13.12" + "@babel/helper-module-imports@^7.12.1": version "7.12.5" resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz#1bfc0229f794988f76ed0a4d4e90860850b54dfb" @@ -568,6 +588,13 @@ dependencies: "@babel/types" "^7.12.13" +"@babel/helper-module-imports@^7.13.12": + version "7.13.12" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.13.12.tgz#c6a369a6f3621cb25da014078684da9196b61977" + integrity sha512-4cVvR2/1B693IuOvSI20xqqa/+bl7lqAMR59R4iu39R9aOX8/JoYY1sFaNvUMyMBGnHdwvJgUrzNLoUZxXypxA== + dependencies: + "@babel/types" "^7.13.12" + "@babel/helper-module-transforms@^7.12.1": version "7.12.1" resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz#7954fec71f5b32c48e4b303b437c34453fd7247c" @@ -598,6 +625,20 @@ "@babel/types" "^7.13.0" lodash "^4.17.19" +"@babel/helper-module-transforms@^7.13.12": + version "7.13.14" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.13.14.tgz#e600652ba48ccb1641775413cb32cfa4e8b495ef" + integrity sha512-QuU/OJ0iAOSIatyVZmfqB0lbkVP0kDRiKj34xy+QNsnVZi/PA6BoSoreeqnxxa9EHFAIL0R9XOaAR/G9WlIy5g== + dependencies: + "@babel/helper-module-imports" "^7.13.12" + "@babel/helper-replace-supers" "^7.13.12" + "@babel/helper-simple-access" "^7.13.12" + "@babel/helper-split-export-declaration" "^7.12.13" + "@babel/helper-validator-identifier" "^7.12.11" + "@babel/template" "^7.12.13" + "@babel/traverse" "^7.13.13" + "@babel/types" "^7.13.14" + "@babel/helper-optimise-call-expression@^7.10.4": version "7.10.4" resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz#50dc96413d594f995a77905905b05893cd779673" @@ -658,6 +699,16 @@ "@babel/traverse" "^7.13.0" "@babel/types" "^7.13.0" +"@babel/helper-replace-supers@^7.13.12": + version "7.13.12" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.13.12.tgz#6442f4c1ad912502481a564a7386de0c77ff3804" + integrity sha512-Gz1eiX+4yDO8mT+heB94aLVNCL+rbuT2xy4YfyNqu8F+OI6vMvJK891qGBTqL9Uc8wxEvRW92Id6G7sDen3fFw== + dependencies: + "@babel/helper-member-expression-to-functions" "^7.13.12" + "@babel/helper-optimise-call-expression" "^7.12.13" + "@babel/traverse" "^7.13.0" + "@babel/types" "^7.13.12" + "@babel/helper-simple-access@^7.12.1": version "7.12.1" resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz#32427e5aa61547d38eb1e6eaf5fd1426fdad9136" @@ -672,6 +723,13 @@ dependencies: "@babel/types" "^7.12.13" +"@babel/helper-simple-access@^7.13.12": + version "7.13.12" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.13.12.tgz#dd6c538afb61819d205a012c31792a39c7a5eaf6" + integrity sha512-7FEjbrx5SL9cWvXioDbnlYTppcZGuCY6ow3/D5vMggb2Ywgu4dMrpTJX0JdQAIcRRUElOIxF3yEooa9gUb9ZbA== + dependencies: + "@babel/types" "^7.13.12" + "@babel/helper-skip-transparent-expression-wrappers@^7.12.1": version "7.12.1" resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz#462dc63a7e435ade8468385c63d2b84cce4b3cbf" @@ -727,7 +785,7 @@ "@babel/traverse" "^7.12.5" "@babel/types" "^7.12.5" -"@babel/helpers@^7.13.0": +"@babel/helpers@^7.13.10": version "7.13.10" resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.13.10.tgz#fd8e2ba7488533cdeac45cc158e9ebca5e3c7df8" integrity sha512-4VO883+MWPDUVRF3PhiLBUFHoX/bsLTGFpFK/HqvvfBZz2D57u9XzPVNFVBTc0PW/CWR9BXTOKt8NF4DInUHcQ== @@ -759,11 +817,25 @@ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.5.tgz#b4af32ddd473c0bfa643bd7ff0728b8e71b81ea0" integrity sha512-FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ== -"@babel/parser@^7.12.13", "@babel/parser@^7.13.0", "@babel/parser@^7.13.4": +"@babel/parser@^7.12.13", "@babel/parser@^7.13.0": version "7.13.10" resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.13.10.tgz#8f8f9bf7b3afa3eabd061f7a5bcdf4fec3c48409" integrity sha512-0s7Mlrw9uTWkYua7xWr99Wpk2bnGa0ANleKfksYAES8LpWH4gW1OUr42vqKNf0us5UQNfru2wPqMqRITzq/SIQ== +"@babel/parser@^7.13.13": + version "7.13.13" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.13.13.tgz#42f03862f4aed50461e543270916b47dd501f0df" + integrity sha512-OhsyMrqygfk5v8HmWwOzlYjJrtLaFhF34MrfG/Z73DgYCI6ojNUTUp2TYbtnjo8PegeJp12eamsNettCQjKjVw== + +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.13.12": + version "7.13.12" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.13.12.tgz#a3484d84d0b549f3fc916b99ee4783f26fabad2a" + integrity sha512-d0u3zWKcoZf379fOeJdr1a5WPDny4aOFZ6hlfKivgK0LY7ZxNfoaHL2fWwdGtHyVvra38FC+HVYkO+byfSA8AQ== + dependencies: + "@babel/helper-plugin-utils" "^7.13.0" + "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1" + "@babel/plugin-proposal-optional-chaining" "^7.13.12" + "@babel/plugin-proposal-async-generator-functions@^7.13.8": version "7.13.8" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.13.8.tgz#87aacb574b3bc4b5603f6fe41458d72a5a2ec4b1" @@ -848,10 +920,10 @@ "@babel/helper-plugin-utils" "^7.13.0" "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" -"@babel/plugin-proposal-optional-chaining@^7.13.8": - version "7.13.8" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.13.8.tgz#e39df93efe7e7e621841babc197982e140e90756" - integrity sha512-hpbBwbTgd7Cz1QryvwJZRo1U0k1q8uyBmeXOSQUjdg/A2TASkhR/rz7AyqZ/kS8kbpsNA80rOYbxySBJAqmhhQ== +"@babel/plugin-proposal-optional-chaining@^7.13.12": + version "7.13.12" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.13.12.tgz#ba9feb601d422e0adea6760c2bd6bbb7bfec4866" + integrity sha512-fcEdKOkIB7Tf4IxrgEVeFC4zeJSTr78no9wTdBuZZbqF64kzllU0ybo2zrzm7gUQfxGhBgq4E39oRs8Zx/RMYQ== dependencies: "@babel/helper-plugin-utils" "^7.13.0" "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1" @@ -1170,10 +1242,10 @@ dependencies: "@babel/helper-plugin-utils" "^7.12.13" -"@babel/plugin-transform-runtime@7.13.9": - version "7.13.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.13.9.tgz#744d3103338a0d6c90dee0497558150b490cee07" - integrity sha512-XCxkY/wBI6M6Jj2mlWxkmqbKPweRanszWbF3Tyut+hKh+PHcuIH/rSr/7lmmE7C3WW+HSIm2GT+d5jwmheuB0g== +"@babel/plugin-transform-runtime@7.13.10": + version "7.13.10" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.13.10.tgz#a1e40d22e2bf570c591c9c7e5ab42d6bf1e419e1" + integrity sha512-Y5k8ipgfvz5d/76tx7JYbKQTcgFSU6VgJ3kKQv4zGTKr+a9T/KBvfRvGtSFgKDQGt/DBykQixV0vNWKIdzWErA== dependencies: "@babel/helper-module-imports" "^7.12.13" "@babel/helper-plugin-utils" "^7.13.0" @@ -1233,15 +1305,16 @@ "@babel/helper-create-regexp-features-plugin" "^7.12.13" "@babel/helper-plugin-utils" "^7.12.13" -"@babel/preset-env@7.13.9": - version "7.13.9" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.13.9.tgz#3ee5f233316b10d066d7f379c6d1e13a96853654" - integrity sha512-mcsHUlh2rIhViqMG823JpscLMesRt3QbMsv1+jhopXEb3W2wXvQ9QoiOlZI9ZbR3XqPtaFpZwEZKYqGJnGMZTQ== +"@babel/preset-env@7.13.12": + version "7.13.12" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.13.12.tgz#6dff470478290582ac282fb77780eadf32480237" + integrity sha512-JzElc6jk3Ko6zuZgBtjOd01pf9yYDEIH8BcqVuYIuOkzOwDesoa/Nz4gIo4lBG6K861KTV9TvIgmFuT6ytOaAA== dependencies: - "@babel/compat-data" "^7.13.8" - "@babel/helper-compilation-targets" "^7.13.8" + "@babel/compat-data" "^7.13.12" + "@babel/helper-compilation-targets" "^7.13.10" "@babel/helper-plugin-utils" "^7.13.0" "@babel/helper-validator-option" "^7.12.17" + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.13.12" "@babel/plugin-proposal-async-generator-functions" "^7.13.8" "@babel/plugin-proposal-class-properties" "^7.13.0" "@babel/plugin-proposal-dynamic-import" "^7.13.8" @@ -1252,7 +1325,7 @@ "@babel/plugin-proposal-numeric-separator" "^7.12.13" "@babel/plugin-proposal-object-rest-spread" "^7.13.8" "@babel/plugin-proposal-optional-catch-binding" "^7.13.8" - "@babel/plugin-proposal-optional-chaining" "^7.13.8" + "@babel/plugin-proposal-optional-chaining" "^7.13.12" "@babel/plugin-proposal-private-methods" "^7.13.0" "@babel/plugin-proposal-unicode-property-regex" "^7.12.13" "@babel/plugin-syntax-async-generators" "^7.8.4" @@ -1300,7 +1373,7 @@ "@babel/plugin-transform-unicode-escapes" "^7.12.13" "@babel/plugin-transform-unicode-regex" "^7.12.13" "@babel/preset-modules" "^0.1.4" - "@babel/types" "^7.13.0" + "@babel/types" "^7.13.12" babel-plugin-polyfill-corejs2 "^0.1.4" babel-plugin-polyfill-corejs3 "^0.1.3" babel-plugin-polyfill-regenerator "^0.1.2" @@ -1318,10 +1391,10 @@ "@babel/types" "^7.4.4" esutils "^2.0.2" -"@babel/runtime@7.13.9": - version "7.13.9" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.13.9.tgz#97dbe2116e2630c489f22e0656decd60aaa1fcee" - integrity sha512-aY2kU+xgJ3dJ1eU6FMB9EH8dIe8dmusF1xEku52joLvw6eAFN0AI+WxCLDnpev2LEejWBAy2sBvBOBAjI3zmvA== +"@babel/runtime@7.13.10": + version "7.13.10" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.13.10.tgz#47d42a57b6095f4468da440388fdbad8bebf0d7d" + integrity sha512-4QPkjJq6Ns3V/RgpEahRk+AGfL0eO6RHHtTWoNNr5mO49G6B5+X6d6THgWEAvTrznU5xYpbAlVKRYcsCgh/Akw== dependencies: regenerator-runtime "^0.13.4" @@ -1380,6 +1453,20 @@ globals "^11.1.0" lodash "^4.17.19" +"@babel/traverse@^7.13.13": + version "7.13.13" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.13.13.tgz#39aa9c21aab69f74d948a486dd28a2dbdbf5114d" + integrity sha512-CblEcwmXKR6eP43oQGG++0QMTtCjAsa3frUuzHoiIJWpaIIi8dwMyEFUJoXRLxagGqCK+jALRwIO+o3R9p/uUg== + dependencies: + "@babel/code-frame" "^7.12.13" + "@babel/generator" "^7.13.9" + "@babel/helper-function-name" "^7.12.13" + "@babel/helper-split-export-declaration" "^7.12.13" + "@babel/parser" "^7.13.13" + "@babel/types" "^7.13.13" + debug "^4.1.0" + globals "^11.1.0" + "@babel/types@^7.10.4", "@babel/types@^7.11.0", "@babel/types@^7.12.1", "@babel/types@^7.12.5", "@babel/types@^7.4.4", "@babel/types@^7.8.3", "@babel/types@^7.8.6": version "7.12.6" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.12.6.tgz#ae0e55ef1cce1fbc881cd26f8234eb3e657edc96" @@ -1398,6 +1485,15 @@ lodash "^4.17.19" to-fast-properties "^2.0.0" +"@babel/types@^7.13.12", "@babel/types@^7.13.13", "@babel/types@^7.13.14": + version "7.13.14" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.13.14.tgz#c35a4abb15c7cd45a2746d78ab328e362cbace0d" + integrity sha512-A2aa3QTkWoyqsZZFl56MLUsfmh7O0gN41IPvXAE/++8ojpbz12SszD7JEGYVdn4f9Kt4amIei07swF1h4AqmmQ== + dependencies: + "@babel/helper-validator-identifier" "^7.12.11" + lodash "^4.17.19" + to-fast-properties "^2.0.0" + "@csstools/convert-colors@^1.4.0": version "1.4.0" resolved "https://registry.yarnpkg.com/@csstools/convert-colors/-/convert-colors-1.4.0.tgz#ad495dc41b12e75d588c6db8b9834f08fa131eb7" @@ -2118,12 +2214,12 @@ "@material/feature-targeting" "10.0.0-canary.2ed2d829b.0" "@material/theme" "10.0.0-canary.2ed2d829b.0" -"@ngtools/webpack@12.0.0-next.5": - version "12.0.0-next.5" - resolved "https://registry.yarnpkg.com/@ngtools/webpack/-/webpack-12.0.0-next.5.tgz#bf864c49b9eaaacb86266befab62bf2971b734a7" - integrity sha512-lzbqoZiOCMVwuxFGtK7H9g0nJzKaaIR3khEdYj5vaZ/AssJ3svs7BZi6Rs7abE273gghSAGF6zvb7eMCxfw5XQ== +"@ngtools/webpack@12.0.0-next.7": + version "12.0.0-next.7" + resolved "https://registry.yarnpkg.com/@ngtools/webpack/-/webpack-12.0.0-next.7.tgz#55a4c5aa5dcd46ce1926622307f443b3a6ef9079" + integrity sha512-P/MTMH3VDB+S5kgK3XDzyWm4ce/M7YbnlPoclYbQ7fyv6iANWc/qoZHDdUuFxbYPhhBwPwUff91hHUaQPN35nQ== dependencies: - "@angular-devkit/core" "12.0.0-next.5" + "@angular-devkit/core" "12.0.0-next.7" enhanced-resolve "5.7.0" webpack-sources "2.2.0" @@ -2304,29 +2400,15 @@ resolved "https://registry.yarnpkg.com/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570" integrity sha1-p3c2C1s5oaLlEG+OhY8v0tBgxXA= -"@schematics/angular@12.0.0-next.5": - version "12.0.0-next.5" - resolved "https://registry.yarnpkg.com/@schematics/angular/-/angular-12.0.0-next.5.tgz#ee970aa0a757c6c80a4320ddb6cb30ad6923645d" - integrity sha512-MdKZFBwIJ6iW4LZQWpJhLV30k2lFk9s+OqMX6x/V7I7W6VxBYK8tvKZzZo7xAAzEWLv/w/UOxHXv/91CpNBN2g== +"@schematics/angular@12.0.0-next.7": + version "12.0.0-next.7" + resolved "https://registry.yarnpkg.com/@schematics/angular/-/angular-12.0.0-next.7.tgz#1c081dacdfc4ae887f74e24e34a476360d256bfc" + integrity sha512-4UzP5D88KXMnkaFLbxgWg9upmu4WG/31EPLsJLDtDz3tn3x3jfMkA4eioQtZRsFabJqTC6OVqMi5hz/9fG/RGw== dependencies: - "@angular-devkit/core" "12.0.0-next.5" - "@angular-devkit/schematics" "12.0.0-next.5" + "@angular-devkit/core" "12.0.0-next.7" + "@angular-devkit/schematics" "12.0.0-next.7" jsonc-parser "3.0.0" -"@schematics/update@0.1200.0-next.5": - version "0.1200.0-next.5" - resolved "https://registry.yarnpkg.com/@schematics/update/-/update-0.1200.0-next.5.tgz#6d3a3be85b73c51794665ee9d863a87ade7d54a9" - integrity sha512-1yzuTNEQ/ilOR7pxTbKxxRKt9bwi8/OUJSSf42Wql6NgpZB6pnJB8+XReRU0L3OBEB9pIGeQ61LJbRu0IVFp4A== - dependencies: - "@angular-devkit/core" "12.0.0-next.5" - "@angular-devkit/schematics" "12.0.0-next.5" - "@yarnpkg/lockfile" "1.1.0" - ini "2.0.0" - npm-package-arg "^8.0.0" - pacote "11.3.0" - semver "7.3.4" - semver-intersect "1.4.0" - "@sindresorhus/is@^0.14.0": version "0.14.0" resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.14.0.tgz#9fb3a3cf3132328151f353de4632e01e52102bea" @@ -2492,10 +2574,10 @@ dependencies: "@types/node" "*" -"@types/youtube@^0.0.38": - version "0.0.38" - resolved "https://registry.yarnpkg.com/@types/youtube/-/youtube-0.0.38.tgz#04aa5efa61f4d52e9cf682575a9dfed58f31e8c1" - integrity sha512-rS0nLlnnZIvOfBNT4957rkKRMHjHxutoVhSEzowocYgNiTMVBmN+Hbkf/L3TeGMMtts9uKZ9gw7O2JLHREVnIw== +"@types/youtube@^0.0.42": + version "0.0.42" + resolved "https://registry.yarnpkg.com/@types/youtube/-/youtube-0.0.42.tgz#c3568e3e82e04cbd00cac3b66564ebcd21fd9d90" + integrity sha512-Nqo3HMPFPcNyZ7HNFZJjpH+N4yXqpxBItG+41e7nL9zednovMRZMXWj36CctSznbBcbj6ucvkJDo5iZ8SKqLIw== "@webassemblyjs/ast@1.9.0": version "1.9.0" @@ -3659,10 +3741,10 @@ bytes@3.1.0: resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg== -cacache@15.0.5, cacache@^15.0.5: - version "15.0.5" - resolved "https://registry.yarnpkg.com/cacache/-/cacache-15.0.5.tgz#69162833da29170d6732334643c60e005f5f17d0" - integrity sha512-lloiL22n7sOjEEXdL8NAjTgv9a1u43xICE9/203qonkZUCj5X1UEWIdf2/Y0d6QcCtMzbKQyhrcDbdvlZTs/+A== +cacache@15.0.6: + version "15.0.6" + resolved "https://registry.yarnpkg.com/cacache/-/cacache-15.0.6.tgz#65a8c580fda15b59150fb76bf3f3a8e45d583099" + integrity sha512-g1WYDMct/jzW+JdWEyjaX2zoBkZ6ZT9VpOyp2I/VMtDsNLffNat3kqPFfi1eDRSK9/SuKGyORDHcQMcPF8sQ/w== dependencies: "@npmcli/move-file" "^1.0.1" chownr "^2.0.0" @@ -3678,7 +3760,7 @@ cacache@15.0.5, cacache@^15.0.5: p-map "^4.0.0" promise-inflight "^1.0.1" rimraf "^3.0.2" - ssri "^8.0.0" + ssri "^8.0.1" tar "^6.0.2" unique-filename "^1.1.1" @@ -3703,6 +3785,29 @@ cacache@^12.0.2: unique-filename "^1.1.1" y18n "^4.0.0" +cacache@^15.0.5: + version "15.0.5" + resolved "https://registry.yarnpkg.com/cacache/-/cacache-15.0.5.tgz#69162833da29170d6732334643c60e005f5f17d0" + integrity sha512-lloiL22n7sOjEEXdL8NAjTgv9a1u43xICE9/203qonkZUCj5X1UEWIdf2/Y0d6QcCtMzbKQyhrcDbdvlZTs/+A== + dependencies: + "@npmcli/move-file" "^1.0.1" + chownr "^2.0.0" + fs-minipass "^2.0.0" + glob "^7.1.4" + infer-owner "^1.0.4" + lru-cache "^6.0.0" + minipass "^3.1.1" + minipass-collect "^1.0.2" + minipass-flush "^1.0.5" + minipass-pipeline "^1.2.2" + mkdirp "^1.0.3" + p-map "^4.0.0" + promise-inflight "^1.0.1" + rimraf "^3.0.2" + ssri "^8.0.0" + tar "^6.0.2" + unique-filename "^1.1.1" + cache-base@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" @@ -4496,10 +4601,10 @@ core-js-compat@^3.8.1, core-js-compat@^3.9.0: browserslist "^4.16.3" semver "7.0.0" -core-js@3.9.1: - version "3.9.1" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.9.1.tgz#cec8de593db8eb2a85ffb0dbdeb312cb6e5460ae" - integrity sha512-gSjRvzkxQc1zjM/5paAmL4idJBFzuJoo+jDjF1tStYFMV2ERfD02HhahhCGXUyHxQRG4yFKVSdO6g62eoRMcDg== +core-js@3.10.0: + version "3.10.0" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.10.0.tgz#9a020547c8b6879f929306949e31496bbe2ae9b3" + integrity sha512-MQx/7TLgmmDVamSyfE+O+5BHvG1aUGj/gHhLn1wVtm2B5u1eVIPvh7vkfjwWKNCjrTJB8+He99IntSQ1qP+vYQ== core-util-is@1.0.2, core-util-is@~1.0.0: version "1.0.2" @@ -4582,10 +4687,10 @@ create-hmac@^1.1.0, create-hmac@^1.1.4, create-hmac@^1.1.7: safe-buffer "^5.0.1" sha.js "^2.4.8" -critters@0.0.9: - version "0.0.9" - resolved "https://registry.yarnpkg.com/critters/-/critters-0.0.9.tgz#1a000ad42527ee5fdd08905dafdb15ded8c906f2" - integrity sha512-8aMHzByeuPiNi8mtx6CwPAHm9TIJHfB3en4VylqRhMVegnTL3A+BJssrmSiGTj8B0DQGWlafq3Q31GLElpBVBw== +critters@0.0.10: + version "0.0.10" + resolved "https://registry.yarnpkg.com/critters/-/critters-0.0.10.tgz#edd0e962fc5af6c4adb6dbf1a71bae2d3f917000" + integrity sha512-p5VKhP1803+f+0Jq5P03w1SbiHtpAKm+1EpJHkiPxQPq0Vu9QLZHviJ02GRrWi0dlcJqrmzMWInbwp4d22RsGw== dependencies: chalk "^4.1.0" css "^3.0.0" @@ -7003,6 +7108,13 @@ hosted-git-info@^3.0.6: dependencies: lru-cache "^6.0.0" +hosted-git-info@^4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.0.2.tgz#5e425507eede4fea846b7262f0838456c4209961" + integrity sha512-c9OGXbZ3guC/xOlCg1Ci/VgWlwsqDv1yMQL1CWqXDL0hDjXuNcq0zuR4xqPSuasI3kqFDhqSyTjREz5gzq0fXg== + dependencies: + lru-cache "^6.0.0" + hpack.js@^2.1.6: version "2.1.6" resolved "https://registry.yarnpkg.com/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2" @@ -8441,10 +8553,10 @@ levn@~0.3.0: prelude-ls "~1.1.2" type-check "~0.3.2" -license-webpack-plugin@2.3.15: - version "2.3.15" - resolved "https://registry.yarnpkg.com/license-webpack-plugin/-/license-webpack-plugin-2.3.15.tgz#9b33e5c287b6f2367d77aecd4d5916e02898eee8" - integrity sha512-reA0yvwvkkFMRsyqVikTcLGFXmgWKPVXrFaR3tRvAnFoZozM4zvwlNNQxuB5Il6fgTtS7nGkrIPm9xS2KZtu7g== +license-webpack-plugin@2.3.16: + version "2.3.16" + resolved "https://registry.yarnpkg.com/license-webpack-plugin/-/license-webpack-plugin-2.3.16.tgz#afd6dcec30b2f7ddca96be090ff8cbf3d08eced1" + integrity sha512-9FbbsQrcbPADbt4ksSoT+A0VvHGFJRN5zXREx4y3W5tzLAJEM6ywEVuBHeRLrGxHAg6kq563P4BYxyBm8Wmqiw== dependencies: "@types/webpack-sources" "^0.1.5" webpack-sources "^1.2.0" @@ -9305,10 +9417,10 @@ mimic-response@^1.0.0, mimic-response@^1.0.1: resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== -mini-css-extract-plugin@1.3.9: - version "1.3.9" - resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-1.3.9.tgz#47a32132b0fd97a119acd530e8421e8f6ab16d5e" - integrity sha512-Ac4s+xhVbqlyhXS5J/Vh/QXUz3ycXlCqoCPpg0vdfhsIBH9eg/It/9L1r1XhSCH737M1lqcWnMuWL13zcygn5A== +mini-css-extract-plugin@1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-1.4.0.tgz#c8e571c4b6d63afa56c47260343adf623349c473" + integrity sha512-DyQr5DhXXARKZoc4kwvCvD95kh69dUupfuKOmBUqZ4kBTmRaRZcU32lYu3cLd6nEGXhQ1l7LzZ3F/CjItaY6VQ== dependencies: loader-utils "^2.0.0" schema-utils "^3.0.0" @@ -9535,6 +9647,11 @@ nanoid@^3.1.20: resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.20.tgz#badc263c6b1dcf14b71efaa85f6ab4c1d6cfc788" integrity sha512-a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw== +nanoid@^3.1.22: + version "3.1.22" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.22.tgz#b35f8fb7d151990a8aebd5aa5015c03cf726f844" + integrity sha512-/2ZUaJX2ANuLtTvqTlgqBQNJoQO398KyJgZloL0PZkC0dpysjncRUPsFe3DUPzz/y3h+u7C46np8RMuvF3jsSQ== + nanomatch@^1.2.9: version "1.2.13" resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" @@ -9753,13 +9870,13 @@ npm-normalize-package-bin@^1.0.1: resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz#6e79a41f23fd235c0623218228da7d9c23b8f6e2" integrity sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA== -npm-package-arg@8.1.1: - version "8.1.1" - resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-8.1.1.tgz#00ebf16ac395c63318e67ce66780a06db6df1b04" - integrity sha512-CsP95FhWQDwNqiYS+Q0mZ7FAEDytDZAkNxQqea6IaAFJTAY9Lhhqyl0irU/6PMc7BGfUmnsbHcqxJD7XuVM/rg== +npm-package-arg@8.1.2, npm-package-arg@^8.1.2: + version "8.1.2" + resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-8.1.2.tgz#b868016ae7de5619e729993fbd8d11dc3c52ab62" + integrity sha512-6Eem455JsSMJY6Kpd3EyWE+n5hC+g9bSyHr9K9U2zqZb7+02+hObQ2c0+8iDk/mNF+8r1MhY44WypKJAkySIYA== dependencies: - hosted-git-info "^3.0.6" - semver "^7.0.0" + hosted-git-info "^4.0.1" + semver "^7.3.4" validate-npm-package-name "^3.0.0" npm-package-arg@^8.0.0, npm-package-arg@^8.0.1: @@ -9781,7 +9898,17 @@ npm-packlist@^2.1.4: npm-bundled "^1.1.1" npm-normalize-package-bin "^1.0.1" -npm-pick-manifest@6.1.0, npm-pick-manifest@^6.0.0: +npm-pick-manifest@6.1.1: + version "6.1.1" + resolved "https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-6.1.1.tgz#7b5484ca2c908565f43b7f27644f36bb816f5148" + integrity sha512-dBsdBtORT84S8V8UTad1WlUyKIY9iMsAmqxHbLdeEeBNMLQDlDWWra3wYUx9EBEIiG/YwAy0XyNHDd2goAsfuA== + dependencies: + npm-install-checks "^4.0.0" + npm-normalize-package-bin "^1.0.1" + npm-package-arg "^8.1.2" + semver "^7.3.4" + +npm-pick-manifest@^6.0.0: version "6.1.0" resolved "https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-6.1.0.tgz#2befed87b0fce956790f62d32afb56d7539c022a" integrity sha512-ygs4k6f54ZxJXrzT0x34NybRlLeZ4+6nECAIbr2i0foTnijtS1TJiyzpqtuUAJOps/hO0tNDr8fRV5g+BtRlTw== @@ -9984,10 +10111,10 @@ onetime@^5.1.0: dependencies: mimic-fn "^2.1.0" -open@8.0.2: - version "8.0.2" - resolved "https://registry.yarnpkg.com/open/-/open-8.0.2.tgz#8c3e95cce93ba2fc8d99968ee8bfefecdb50b84f" - integrity sha512-NV5QmWJrTaNBLHABJyrb+nd5dXI5zfea/suWawBhkHzAbVhLLiJdrqMgxMypGK9Eznp2Ltoh7SAVkQ3XAucX7Q== +open@8.0.4: + version "8.0.4" + resolved "https://registry.yarnpkg.com/open/-/open-8.0.4.tgz#2fb90debffcf20f4d7be537502ed3e3ee9e5dcbc" + integrity sha512-Txc9FOcvjrr5Kv+Zb3w89uKMKiP7wH8mLdYj1xJa+YnhhntEYhbB6cQHjS4O6P+jFwMEzEQVVcpfnu9WkKNuLQ== dependencies: define-lazy-prop "^2.0.0" is-docker "^2.1.1" @@ -10253,10 +10380,10 @@ package-json@^6.3.0: registry-url "^5.0.0" semver "^6.2.0" -pacote@11.3.0: - version "11.3.0" - resolved "https://registry.yarnpkg.com/pacote/-/pacote-11.3.0.tgz#b2e16791a39cd4d9fb9fc1ec240cefe7ea518e6f" - integrity sha512-cygprcGpEVqvDzpuPMkGVXW/ooc2ibpoosuJ4YHcUXozDs9VJP7Vha+41pYppG2MVNis4t1BB8IygIBh7vVr2Q== +pacote@11.3.1: + version "11.3.1" + resolved "https://registry.yarnpkg.com/pacote/-/pacote-11.3.1.tgz#6ce95dd230db475cbd8789fd1f986bec51b4bf7c" + integrity sha512-TymtwoAG12cczsJIrwI/euOQKtjrQHlD0k0oyt9QSmZGpqa+KdlxKdWR/YUjYizkixaVyztxt/Wsfo8bL3A6Fg== dependencies: "@npmcli/git" "^2.0.1" "@npmcli/installed-package-contents" "^1.0.6" @@ -10773,10 +10900,10 @@ postcss-image-set-function@^3.0.1: postcss "^7.0.2" postcss-values-parser "^2.0.0" -postcss-import@14.0.0: - version "14.0.0" - resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-14.0.0.tgz#3ed1dadac5a16650bde3f4cdea6633b9c3c78296" - integrity sha512-gFDDzXhqr9ELmnLHgCC3TbGfA6Dm/YMb/UN8/f7Uuq4fL7VTk2vOIj6hwINEwbokEmp123bLD7a5m+E+KIetRg== +postcss-import@14.0.1: + version "14.0.1" + resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-14.0.1.tgz#6a3f8f2ce74a95fc7c72ecfe3eddfa0e9124e677" + integrity sha512-Xn2+z++vWObbEPhiiKO1a78JiyhqipyrXHBb3AHpv0ks7Cdg+GxQQJ24ODNMTanldf7197gSP3axppO9yaG0lA== dependencies: postcss-value-parser "^4.0.0" read-cache "^1.0.0" @@ -11202,13 +11329,13 @@ postcss@7.0.21: source-map "^0.6.1" supports-color "^6.1.0" -postcss@8.2.8, postcss@^8.2.4: - version "8.2.8" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.2.8.tgz#0b90f9382efda424c4f0f69a2ead6f6830d08ece" - integrity sha512-1F0Xb2T21xET7oQV9eKuctbM9S7BC0fetoHCc4H13z0PT6haiRLP4T0ZY4XWh7iLP0usgqykT6p9B2RtOf4FPw== +postcss@8.2.9: + version "8.2.9" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.2.9.tgz#fd95ff37b5cee55c409b3fdd237296ab4096fba3" + integrity sha512-b+TmuIL4jGtCHtoLi+G/PisuIl9avxs8IZMSmlABRwNz5RLUUACrC+ws81dcomz1nRezm5YPdXiMEzBEKgYn+Q== dependencies: colorette "^1.2.2" - nanoid "^3.1.20" + nanoid "^3.1.22" source-map "^0.6.1" postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.2, postcss@^7.0.27, postcss@^7.0.32, postcss@^7.0.5, postcss@^7.0.6: @@ -11220,6 +11347,15 @@ postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.2 source-map "^0.6.1" supports-color "^6.1.0" +postcss@^8.2.4: + version "8.2.8" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.2.8.tgz#0b90f9382efda424c4f0f69a2ead6f6830d08ece" + integrity sha512-1F0Xb2T21xET7oQV9eKuctbM9S7BC0fetoHCc4H13z0PT6haiRLP4T0ZY4XWh7iLP0usgqykT6p9B2RtOf4FPw== + dependencies: + colorette "^1.2.2" + nanoid "^3.1.20" + source-map "^0.6.1" + prelude-ls@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" @@ -12099,10 +12235,10 @@ run-queue@^1.0.0, run-queue@^1.0.3: dependencies: aproba "^1.1.1" -rxjs@6.6.6, rxjs@^6.6.6: - version "6.6.6" - resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.6.tgz#14d8417aa5a07c5e633995b525e1e3c0dec03b70" - integrity sha512-/oTwee4N4iWzAMAL9xdGKjkEHmIwupR3oXbQjCKywF1BeFohswF3vZdogbmEF6pZkOsXTzWkrZszrWpQTByYVg== +rxjs@6.6.7: + version "6.6.7" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.7.tgz#90ac018acabf491bf65044235d5863c4dab804c9" + integrity sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ== dependencies: tslib "^1.9.0" @@ -12113,6 +12249,13 @@ rxjs@^6.4.0, rxjs@^6.5.3, rxjs@^6.6.0: dependencies: tslib "^1.9.0" +rxjs@^6.6.6: + version "6.6.6" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.6.tgz#14d8417aa5a07c5e633995b525e1e3c0dec03b70" + integrity sha512-/oTwee4N4iWzAMAL9xdGKjkEHmIwupR3oXbQjCKywF1BeFohswF3vZdogbmEF6pZkOsXTzWkrZszrWpQTByYVg== + dependencies: + tslib "^1.9.0" + safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: version "5.1.2" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" @@ -12235,13 +12378,6 @@ semver-dsl@^1.0.1: dependencies: semver "^5.3.0" -semver-intersect@1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/semver-intersect/-/semver-intersect-1.4.0.tgz#bdd9c06bedcdd2fedb8cd352c3c43ee8c61321f3" - integrity sha512-d8fvGg5ycKAq0+I6nfWeCx6ffaWJCsBYU0H2Rq56+/zFePYfT8mXkB3tWBSjR5BerkHNZ5eTPIk1/LBYas35xQ== - dependencies: - semver "^5.0.0" - semver-regex@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/semver-regex/-/semver-regex-2.0.0.tgz#a93c2c5844539a770233379107b38c7b4ac9d338" @@ -12254,7 +12390,7 @@ semver-truncate@^1.1.2: dependencies: semver "^5.3.0" -"semver@2 || 3 || 4 || 5", semver@^5.0.0, semver@^5.0.1, semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.6.0, semver@^5.7.1: +"semver@2 || 3 || 4 || 5", semver@^5.0.1, semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.6.0, semver@^5.7.1: version "5.7.1" resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== @@ -12264,10 +12400,10 @@ semver@7.0.0: resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== -semver@7.3.4, semver@^7.1.3, semver@^7.3.4: - version "7.3.4" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.4.tgz#27aaa7d2e4ca76452f98d3add093a72c943edc97" - integrity sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw== +semver@7.3.5: + version "7.3.5" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" + integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== dependencies: lru-cache "^6.0.0" @@ -12281,6 +12417,13 @@ semver@^7.0.0, semver@^7.1.1, semver@^7.3.2: resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.2.tgz#604962b052b81ed0786aae84389ffba70ffd3938" integrity sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ== +semver@^7.1.3, semver@^7.3.4: + version "7.3.4" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.4.tgz#27aaa7d2e4ca76452f98d3add093a72c943edc97" + integrity sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw== + dependencies: + lru-cache "^6.0.0" + send@0.17.1: version "0.17.1" resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8" @@ -14423,7 +14566,7 @@ yargs@^15.3.1: y18n "^4.0.0" yargs-parser "^18.1.2" -yargs@^16.1.1: +yargs@^16.1.1, yargs@^16.2.0: version "16.2.0" resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==