From 3e88ac2cd60cafd35d30fcdfebe2d226117fc885 Mon Sep 17 00:00:00 2001 From: crisbeto Date: Thu, 7 Nov 2019 06:59:14 +0900 Subject: [PATCH] refactor: update to MDC 4.0.0 stable Updates the repo to MDC 4.0.0 stable and fixes the breaking changes. --- package.json | 4 +- packages.bzl | 2 +- src/material-experimental/mdc-menu/menu.scss | 8 + .../mdc-progress-bar/progress-bar.ts | 7 +- yarn.lock | 998 +++++++++--------- 5 files changed, 515 insertions(+), 504 deletions(-) diff --git a/package.json b/package.json index d7bf15c2e57e..9fe2fcbe0643 100644 --- a/package.json +++ b/package.json @@ -42,7 +42,7 @@ }, "version": "9.0.0-rc.0", "requiredAngularVersion": "^9.0.0-0 || ^10.0.0-0", - "requiredMDCVersion": "^4.0.0-canary.062ade5c0.0", + "requiredMDCVersion": "^4.0.0", "dependencies": { "@angular/animations": "^9.0.0-rc.0", "@angular/common": "^9.0.0-rc.0", @@ -55,7 +55,7 @@ "@types/youtube": "^0.0.38", "@webcomponents/custom-elements": "^1.1.0", "core-js": "^2.6.9", - "material-components-web": "^4.0.0-canary.062ade5c0.0", + "material-components-web": "^4.0.0", "rxjs": "^6.5.3", "systemjs": "0.19.43", "tsickle": "^0.37.0", diff --git a/packages.bzl b/packages.bzl index aab0e72dc171..bf3837fe8d22 100644 --- a/packages.bzl +++ b/packages.bzl @@ -2,7 +2,7 @@ # all in-sync. This map is passed to each ng_package rule to stamp out the appropriate # version for the placeholders. ANGULAR_PACKAGE_VERSION = "^9.0.0-0 || ^10.0.0-0" -MDC_PACKAGE_VERSION = "^4.0.0-canary.062ade5c0.0" +MDC_PACKAGE_VERSION = "^4.0.0" VERSION_PLACEHOLDER_REPLACEMENTS = { "0.0.0-MDC": MDC_PACKAGE_VERSION, "0.0.0-NG": ANGULAR_PACKAGE_VERSION, diff --git a/src/material-experimental/mdc-menu/menu.scss b/src/material-experimental/mdc-menu/menu.scss index a8817f0f1e38..78735beb24a9 100644 --- a/src/material-experimental/mdc-menu/menu.scss +++ b/src/material-experimental/mdc-menu/menu.scss @@ -4,6 +4,7 @@ @import '../../material/core/style/menu-common'; @import '../../material/core/style/button-common'; @import '../../cdk/a11y/a11y'; +@import '../mdc-helpers/mdc-helpers'; @include mdc-menu-surface-core-styles($query: structure); @@ -28,6 +29,12 @@ } .mat-mdc-menu-item { + $height: mdc-density-prop-value( + $density-config: $mdc-list-single-line-density-config, + $density-scale: $mdc-list-single-line-density-scale, + $property-name: height, + ); + // Note that we include this private mixin, because the public // one adds a bunch of styles that we aren't using for the menu. @include mdc-list-item-base_; @@ -35,6 +42,7 @@ // MDC's menu items are `
  • ` nodes which don't need resets, however ours // can be anything, including buttons, so we need to do the reset ourselves. @include mat-button-reset; + @include mdc-list-single-line-height($height, $query: $mat-base-styles-query); cursor: pointer; width: 100%; text-align: left; diff --git a/src/material-experimental/mdc-progress-bar/progress-bar.ts b/src/material-experimental/mdc-progress-bar/progress-bar.ts index 6ea0ce670180..6076302329e5 100644 --- a/src/material-experimental/mdc-progress-bar/progress-bar.ts +++ b/src/material-experimental/mdc-progress-bar/progress-bar.ts @@ -81,18 +81,13 @@ export class MatProgressBar extends _MatProgressBarMixinBase implements AfterVie addClass: (className: string) => this._rootElement.classList.add(className), getBuffer: () => this._bufferBar, getPrimaryBar: () => this._primaryBar, - // TODO(crisbeto): remove the ` as MDCLinearProgressAdapter` below once this is released: - // tslint:disable-next-line:max-line-length - // https://github.com/material-components/material-components-web/commit/062ade5c052cf00cefeee6e8e0acf7d16c4ce338 - // We add `forceLayout` before the code requiring it is in the canary - // release so that our cronjob that runs against master doesn't fail. forceLayout: () => this._platform.isBrowser && this._rootElement.offsetWidth, hasClass: (className: string) => this._rootElement.classList.contains(className), removeClass: (className: string) => this._rootElement.classList.remove(className), setStyle: (el: HTMLElement, styleProperty: string, value: string) => { (el.style as any)[styleProperty] = value; } - } as MDCLinearProgressAdapter; + }; /** Flag that indicates whether NoopAnimations mode is set to true. */ _isNoopAnimation = false; diff --git a/yarn.lock b/yarn.lock index 447a7770f325..c8af525a757c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -335,526 +335,534 @@ resolved "https://registry.yarnpkg.com/@firebase/app-types/-/app-types-0.3.2.tgz#a92dc544290e2893bd8c02a81e684dae3d8e7c85" integrity sha512-ZD8lTgW07NGgo75bTyBJA8Lt9+NweNzot7lrsBtIvfciwUzaFJLsv2EShqjBeuhF7RpG6YFucJ6m67w5buCtzw== -"@material/animation@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/animation/-/animation-4.0.0-canary.e851d4f40.0.tgz#a643a5c0c8a31e77a3519d04d2450cfa05cbdd8b" - integrity sha512-vpEp7ZDC69+WTYwPQkEbhU6ePz6Xx494XzEZZEx8v9gCHBhYlww+2FarKmKuYSZzrSgAxpNWKEW8+zSt+LjJpQ== +"@material/animation@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/animation/-/animation-4.0.0.tgz#19eaf377809f20978f8452a4237d27867d3ffd1d" + integrity sha512-IfzXzstWdtKQcsNWu+s2Hpz5dBwkTHtgtzoesr+FC7TqENH+SJdsF1ntnZI1XVi2C9ZlBf7f4BSmXpWHD0MIlw== dependencies: tslib "^1.9.3" -"@material/auto-init@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/auto-init/-/auto-init-4.0.0-canary.e851d4f40.0.tgz#b2ad33c8f643f192001d84bccce8cc12ae906055" - integrity sha512-zupNS1FsaRavOiGH7I4qWQBpqC+G8mbglWoyfMQFbvBpWwTYi6O1uC/w/SZSYFtLMfxv3RZYsr/BFsNUUxE3Mw== +"@material/auto-init@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/auto-init/-/auto-init-4.0.0.tgz#4c3505154610525960e46b81e3ed0b3bcdaafd81" + integrity sha512-B5hCY24cTrK25in2bAhLgsZry0lR6El0y+uxL+2spqGF1Novz/G5UJu3v9z5cycc7DZhZg9wZQvF6tmagtNaog== dependencies: - "@material/base" "^4.0.0-canary.e851d4f40.0" + "@material/base" "^4.0.0" tslib "^1.9.3" -"@material/base@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/base/-/base-4.0.0-canary.e851d4f40.0.tgz#c7feb82a319865e0ce9619120d6dc5eaebeb8ac4" - integrity sha512-MpFAsiPNMYmSINpVSibD0qKBjTI3ZhzAgKbg1WqIUmsC5EEKIBwiaS5w+y7cZrXTtSB2qtR7gaV4ySY4bSKkcA== +"@material/base@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/base/-/base-4.0.0.tgz#535574d0b63c18892cfb70e88b27bc8f8090677a" + integrity sha512-vHm7fkqXzjdfxifXvlmaZColoIfKuWmO+1rvdzDORTWP+A8Dq70cgKd2I1SBqxzDGjOasMzHbQI6f9MISQf2vQ== dependencies: tslib "^1.9.3" -"@material/button@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/button/-/button-4.0.0-canary.e851d4f40.0.tgz#d21b037b573b7c2d5260496b2364281fbe65db9f" - integrity sha512-bdVVviEqZ1RUBAulyfij72hD7ct3TulKr8JE3Yr8IaZefCc0ijqdqkktoNOA2bX7MikT3CdauEP8DCG8WwYUig== - dependencies: - "@material/density" "^4.0.0-canary.e851d4f40.0" - "@material/elevation" "^4.0.0-canary.e851d4f40.0" - "@material/feature-targeting" "^4.0.0-canary.e851d4f40.0" - "@material/ripple" "^4.0.0-canary.e851d4f40.0" - "@material/rtl" "^4.0.0-canary.e851d4f40.0" - "@material/shape" "^4.0.0-canary.e851d4f40.0" - "@material/theme" "^4.0.0-canary.e851d4f40.0" - "@material/typography" "^4.0.0-canary.e851d4f40.0" - -"@material/card@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/card/-/card-4.0.0-canary.e851d4f40.0.tgz#dd2e7b05339a05d8576970fe651fe55a6e50a14e" - integrity sha512-EWkiE2eZCD5qXQcUqzX6ENB58M9ta4G/6jgsQST6QGCrKv0KwvA2MfnZHs0tIzhNJPSM/gwFcqKXg7gPYKVhww== - dependencies: - "@material/elevation" "^4.0.0-canary.e851d4f40.0" - "@material/feature-targeting" "^4.0.0-canary.e851d4f40.0" - "@material/ripple" "^4.0.0-canary.e851d4f40.0" - "@material/rtl" "^4.0.0-canary.e851d4f40.0" - "@material/shape" "^4.0.0-canary.e851d4f40.0" - "@material/theme" "^4.0.0-canary.e851d4f40.0" - -"@material/checkbox@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/checkbox/-/checkbox-4.0.0-canary.e851d4f40.0.tgz#4f227fbd66dfc2088d927e23c222569b6c6685b9" - integrity sha512-VGzOOIOEPjAJyNXXGc62CDJbbduaAvKLs7s2FTZrSHXcGxl6wM8Nd7Hq7TVgresZFq9xA0hbncsbxAV86WbKYw== - dependencies: - "@material/animation" "^4.0.0-canary.e851d4f40.0" - "@material/base" "^4.0.0-canary.e851d4f40.0" - "@material/density" "^4.0.0-canary.e851d4f40.0" - "@material/dom" "^4.0.0-canary.e851d4f40.0" - "@material/feature-targeting" "^4.0.0-canary.e851d4f40.0" - "@material/ripple" "^4.0.0-canary.e851d4f40.0" - "@material/rtl" "^4.0.0-canary.e851d4f40.0" - "@material/theme" "^4.0.0-canary.e851d4f40.0" +"@material/button@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/button/-/button-4.0.0.tgz#714cba51a6d3d33c51fe106f8d0d114596d95b1d" + integrity sha512-CoQjShblZ7evChPJoM+Cao90Fwi25NCIhdTequzZifD73BvQegyN7MlNdbHaGqpecYzOrm0xq+nocg+yQN90qg== + dependencies: + "@material/density" "^4.0.0" + "@material/elevation" "^4.0.0" + "@material/feature-targeting" "^4.0.0" + "@material/ripple" "^4.0.0" + "@material/rtl" "^4.0.0" + "@material/shape" "^4.0.0" + "@material/theme" "^4.0.0" + "@material/touch-target" "^4.0.0" + "@material/typography" "^4.0.0" + +"@material/card@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/card/-/card-4.0.0.tgz#0356602f0b3eed37594e3f7e8874aad484d9b948" + integrity sha512-+7qD6pko5/vRNLTX99P2uaLMO1/CcSjgoQgoDKsDEAL/TDxxDib9d9Rf3JD0b8waE+7mDELS98Gt8vHzD8mvnQ== + dependencies: + "@material/elevation" "^4.0.0" + "@material/feature-targeting" "^4.0.0" + "@material/ripple" "^4.0.0" + "@material/rtl" "^4.0.0" + "@material/shape" "^4.0.0" + "@material/theme" "^4.0.0" + +"@material/checkbox@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/checkbox/-/checkbox-4.0.0.tgz#1fd5826f008685ea8d9899fea0606ecf65be9a26" + integrity sha512-2ONHncYAmyIQewvedKDJGeiMvLjmX7wBH5Lx0OBYSwa9nuwjXGWEQR8tNOHIZzevV+nPyGexl6HyvgZ2QNUVZg== + dependencies: + "@material/animation" "^4.0.0" + "@material/base" "^4.0.0" + "@material/density" "^4.0.0" + "@material/dom" "^4.0.0" + "@material/feature-targeting" "^4.0.0" + "@material/ripple" "^4.0.0" + "@material/theme" "^4.0.0" + "@material/touch-target" "^4.0.0" tslib "^1.9.3" -"@material/chips@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/chips/-/chips-4.0.0-canary.e851d4f40.0.tgz#df6dcddb94957c6b1fa06f3af051c91bd611f831" - integrity sha512-TsNqEKgjyTm+DkqfEqmaK2ucvwpo8gGGNtnEtjCvWAVqazsABvrtrdQ8lmJenXWiZIQ+n1hlqZrewE18mW0kxw== - dependencies: - "@material/animation" "^4.0.0-canary.e851d4f40.0" - "@material/base" "^4.0.0-canary.e851d4f40.0" - "@material/checkbox" "^4.0.0-canary.e851d4f40.0" - "@material/elevation" "^4.0.0-canary.e851d4f40.0" - "@material/feature-targeting" "^4.0.0-canary.e851d4f40.0" - "@material/ripple" "^4.0.0-canary.e851d4f40.0" - "@material/shape" "^4.0.0-canary.e851d4f40.0" - "@material/theme" "^4.0.0-canary.e851d4f40.0" - "@material/typography" "^4.0.0-canary.e851d4f40.0" +"@material/chips@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/chips/-/chips-4.0.0.tgz#904ac3e4cfa316a853ef0e4a0266625a9881c28e" + integrity sha512-+c9QeW4xC3LwWjh8RH2JjNRq+WlhDSjDkOQrr+epcYjcBGpZUZ/m2MnDNuqHKTFMqGraVsSuX2hcjN8bs/Piiw== + dependencies: + "@material/animation" "^4.0.0" + "@material/base" "^4.0.0" + "@material/checkbox" "^4.0.0" + "@material/elevation" "^4.0.0" + "@material/feature-targeting" "^4.0.0" + "@material/ripple" "^4.0.0" + "@material/shape" "^4.0.0" + "@material/theme" "^4.0.0" + "@material/touch-target" "^4.0.0" + "@material/typography" "^4.0.0" tslib "^1.9.3" -"@material/data-table@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/data-table/-/data-table-4.0.0-canary.e851d4f40.0.tgz#1ed030f87e93c3741962c16ec5533f318dd1676d" - integrity sha512-tcUZDsvWyKEBYZ1N4cQH59shLtkZjzR7Pz9x0wwzjieq/SuAxshbg/lQlgtRWMvx1Hgke2uGz1fPAKbmPstxkQ== - dependencies: - "@material/animation" "^4.0.0-canary.e851d4f40.0" - "@material/base" "^4.0.0-canary.e851d4f40.0" - "@material/checkbox" "^4.0.0-canary.e851d4f40.0" - "@material/density" "^4.0.0-canary.e851d4f40.0" - "@material/dom" "^4.0.0-canary.e851d4f40.0" - "@material/elevation" "^4.0.0-canary.e851d4f40.0" - "@material/feature-targeting" "^4.0.0-canary.e851d4f40.0" - "@material/ripple" "^4.0.0-canary.e851d4f40.0" - "@material/rtl" "^4.0.0-canary.e851d4f40.0" - "@material/shape" "^4.0.0-canary.e851d4f40.0" - "@material/theme" "^4.0.0-canary.e851d4f40.0" - "@material/typography" "^4.0.0-canary.e851d4f40.0" +"@material/data-table@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/data-table/-/data-table-4.0.0.tgz#9ad3fe1e05cd893ac097a73c312d1201ea2a07d6" + integrity sha512-tCjdynaqPATCIi8YWOCo9ie8tyHlxlIpyfMuRx3dVD90P8aIdNEc74LoeAQc2TuOwKZJJqG8WYkA2p6uUNaz2Q== + dependencies: + "@material/animation" "^4.0.0" + "@material/base" "^4.0.0" + "@material/checkbox" "^4.0.0" + "@material/density" "^4.0.0" + "@material/dom" "^4.0.0" + "@material/elevation" "^4.0.0" + "@material/feature-targeting" "^4.0.0" + "@material/ripple" "^4.0.0" + "@material/rtl" "^4.0.0" + "@material/shape" "^4.0.0" + "@material/theme" "^4.0.0" + "@material/typography" "^4.0.0" tslib "^1.10.0" -"@material/density@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/density/-/density-4.0.0-canary.e851d4f40.0.tgz#e4b336bbba21bb7d77fd88f37628f67667a411ce" - integrity sha512-v2nHSv1G9c57yUEZ3UmAvt00DHshA6gmM1gb023D0gxtirC4dQiwOEnwmdEJsuLNPwo9zlcLUezgisZikLzr/Q== - -"@material/dialog@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/dialog/-/dialog-4.0.0-canary.e851d4f40.0.tgz#855840d4d307f921e8192c746a33c716204aa164" - integrity sha512-7OpHySKluZmJAt/S/wFiAttR2vcLDCDqURXNQ6z04JmUkZqyxI8zzoO+cAqYRTSUDbvGI9Ni3aeWFe4VRUCifQ== - dependencies: - "@material/animation" "^4.0.0-canary.e851d4f40.0" - "@material/base" "^4.0.0-canary.e851d4f40.0" - "@material/dom" "^4.0.0-canary.e851d4f40.0" - "@material/elevation" "^4.0.0-canary.e851d4f40.0" - "@material/feature-targeting" "^4.0.0-canary.e851d4f40.0" - "@material/ripple" "^4.0.0-canary.e851d4f40.0" - "@material/rtl" "^4.0.0-canary.e851d4f40.0" - "@material/shape" "^4.0.0-canary.e851d4f40.0" - "@material/theme" "^4.0.0-canary.e851d4f40.0" - "@material/typography" "^4.0.0-canary.e851d4f40.0" +"@material/density@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/density/-/density-4.0.0.tgz#5bc4bba6c1232f6e075c88295357e6ebdee4353f" + integrity sha512-PuOCPCXlWjimTq+OuCS8biAb1JE9aXCZwT1dRG9REAIAK7bN8KeeTzkeJp6jTj+ggZjWphwKF0lKeX6Gv+e/lw== + +"@material/dialog@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/dialog/-/dialog-4.0.0.tgz#09861315b80c217acf2a8a9f9ea6201e2cf2d2a7" + integrity sha512-ATfmcRKjPUuhpjKuCCtYrbuRfx1vZ9r0ZkMI2eLBxWbYbTbKOH+oM5Z24uVO38bX7SvOItPWsAQZYkoiyPUdPQ== + dependencies: + "@material/animation" "^4.0.0" + "@material/base" "^4.0.0" + "@material/dom" "^4.0.0" + "@material/elevation" "^4.0.0" + "@material/feature-targeting" "^4.0.0" + "@material/ripple" "^4.0.0" + "@material/rtl" "^4.0.0" + "@material/shape" "^4.0.0" + "@material/theme" "^4.0.0" + "@material/touch-target" "^4.0.0" + "@material/typography" "^4.0.0" focus-trap "^5.0.0" tslib "^1.9.3" -"@material/dom@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/dom/-/dom-4.0.0-canary.e851d4f40.0.tgz#52e7ff65c43c391702e23f93daa6a030b3bda019" - integrity sha512-6fSE4jckJ/rZ448wCmktdWX2RdPLTUUM67wWWPjPklt1JG/ZWMtgijqcgOTI4i0imJcVkV/buQNR56t5tkBFrA== +"@material/dom@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/dom/-/dom-4.0.0.tgz#f0e68c4429e555040304c958bb3e11614276fdfa" + integrity sha512-GRCJT9+PGWqygZwGf1XLTrbmzP35YWG7+T0hpfhoIJO8VDiMTeyfvhJXFuA2wh9pD0noEjte0lmbdBlykrbWZw== dependencies: tslib "^1.9.3" -"@material/drawer@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/drawer/-/drawer-4.0.0-canary.e851d4f40.0.tgz#b248a4edf89a6286f857cf3fc067789724fed1f6" - integrity sha512-7xkYvwdAgwlzBuNuaPEPTnVEHwkTOm0uWkiRHEhXK15MvPngS+Udwc2bpkOQpnPpEdSEiMipNyK8pQcBlBux9g== - dependencies: - "@material/animation" "^4.0.0-canary.e851d4f40.0" - "@material/base" "^4.0.0-canary.e851d4f40.0" - "@material/elevation" "^4.0.0-canary.e851d4f40.0" - "@material/feature-targeting" "^4.0.0-canary.e851d4f40.0" - "@material/list" "^4.0.0-canary.e851d4f40.0" - "@material/ripple" "^4.0.0-canary.e851d4f40.0" - "@material/rtl" "^4.0.0-canary.e851d4f40.0" - "@material/shape" "^4.0.0-canary.e851d4f40.0" - "@material/theme" "^4.0.0-canary.e851d4f40.0" - "@material/typography" "^4.0.0-canary.e851d4f40.0" +"@material/drawer@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/drawer/-/drawer-4.0.0.tgz#07d66e4170f6b802ef902248dbddb1693ead55f2" + integrity sha512-HjhE4KnP+bGC56AdD8H1FqMT5PjEuz0RvvEzsMrQC86CERsE9eu35+JdSHFsLT2qi8m8c8v9NicOVIP1QHNH+Q== + dependencies: + "@material/animation" "^4.0.0" + "@material/base" "^4.0.0" + "@material/elevation" "^4.0.0" + "@material/feature-targeting" "^4.0.0" + "@material/list" "^4.0.0" + "@material/ripple" "^4.0.0" + "@material/rtl" "^4.0.0" + "@material/shape" "^4.0.0" + "@material/theme" "^4.0.0" + "@material/typography" "^4.0.0" focus-trap "^5.0.0" tslib "^1.9.3" -"@material/elevation@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/elevation/-/elevation-4.0.0-canary.e851d4f40.0.tgz#c8568e2f2af023efabdf724243a2a4e9b810d633" - integrity sha512-OjVI0GZC4t+WnOgZgynwe27IEZHbyLHQQRNOb9tY03c+ZKQzB4rQq8J0UcovUzi+8tPkVbF+yVkgua3qURPXNQ== - dependencies: - "@material/animation" "^4.0.0-canary.e851d4f40.0" - "@material/feature-targeting" "^4.0.0-canary.e851d4f40.0" - "@material/theme" "^4.0.0-canary.e851d4f40.0" - -"@material/fab@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/fab/-/fab-4.0.0-canary.e851d4f40.0.tgz#c5d56bc7d9fade87716866599b199c29123520c3" - integrity sha512-9Zsbv92u7twg2RxCKQhoWwT94Ps772f6daK4uZeIqsMCYplEbR/955WxpmqXlU+htX5hT9bUP0VhWJDqXQTrNw== - dependencies: - "@material/animation" "^4.0.0-canary.e851d4f40.0" - "@material/elevation" "^4.0.0-canary.e851d4f40.0" - "@material/feature-targeting" "^4.0.0-canary.e851d4f40.0" - "@material/ripple" "^4.0.0-canary.e851d4f40.0" - "@material/rtl" "^4.0.0-canary.e851d4f40.0" - "@material/shape" "^4.0.0-canary.e851d4f40.0" - "@material/theme" "^4.0.0-canary.e851d4f40.0" - "@material/typography" "^4.0.0-canary.e851d4f40.0" - -"@material/feature-targeting@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/feature-targeting/-/feature-targeting-4.0.0-canary.e851d4f40.0.tgz#858332715d935c36a85dcd2932484275c3a8878a" - integrity sha512-/s7vYo8T2mN5CbOtgT7s16+0JGUiS+PJm/65uVmdfwfjXG8e2zk5LQxObJDAac6D6j8PfVXEzepne/+ueeGQmQ== - -"@material/floating-label@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/floating-label/-/floating-label-4.0.0-canary.e851d4f40.0.tgz#d6cd180da5f32c250c907634b0e4851bdf2e69a4" - integrity sha512-ZIarmGfmrLqW08Y9TbB9kM+OVv2drd9Ij5L5lCvYGDQbfBcHPT/HM0kWIGl+srX6OZOuBFO63PtAqvGewIM7XA== - dependencies: - "@material/animation" "^4.0.0-canary.e851d4f40.0" - "@material/base" "^4.0.0-canary.e851d4f40.0" - "@material/rtl" "^4.0.0-canary.e851d4f40.0" - "@material/theme" "^4.0.0-canary.e851d4f40.0" - "@material/typography" "^4.0.0-canary.e851d4f40.0" +"@material/elevation@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/elevation/-/elevation-4.0.0.tgz#58ba81c8c9efd0b5d3bfed7fa915d4930d814b97" + integrity sha512-wKffoZcqkwAMWYbfGJJ95RDeOFz/IMvF7ye4VamjUwLb1iPiKxUZKUcd40XpuEvsn794HSIEWfGDsRq7BxJAMQ== + dependencies: + "@material/animation" "^4.0.0" + "@material/feature-targeting" "^4.0.0" + "@material/theme" "^4.0.0" + +"@material/fab@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/fab/-/fab-4.0.0.tgz#634035a4ef087856fbc639de60efc32772d8dcb1" + integrity sha512-YG5fubnZUEFLumBuc3Fw6Hcnek244OKJleSQhWVtFS6I2EgHqmr0gD8ZCKvXARmieyh4LRn7jKDK/WFJh74ayA== + dependencies: + "@material/animation" "^4.0.0" + "@material/elevation" "^4.0.0" + "@material/feature-targeting" "^4.0.0" + "@material/ripple" "^4.0.0" + "@material/rtl" "^4.0.0" + "@material/shape" "^4.0.0" + "@material/theme" "^4.0.0" + "@material/typography" "^4.0.0" + +"@material/feature-targeting@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/feature-targeting/-/feature-targeting-4.0.0.tgz#8d9d1470801a1fd166773731613d9fa89e0fd85e" + integrity sha512-0gk+f151vqmEdWkrQ9ocPlQRU9aUtSGsVBhletqIbsthLUsZIz9qk25FHjV1wHd/bGHknd9NH+T8ENprv3KLFg== + +"@material/floating-label@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/floating-label/-/floating-label-4.0.0.tgz#288eac6b82ff472472f678032fc94024155a42c8" + integrity sha512-ovuZKhH7U+YmZk8kXftYCdEaU9InJdkBsPe4TP+dg4HiO1lWmd7ZxVsMo6iTl4yaFofkBPj3VDkbE1fLnHxKPA== + dependencies: + "@material/animation" "^4.0.0" + "@material/base" "^4.0.0" + "@material/rtl" "^4.0.0" + "@material/theme" "^4.0.0" + "@material/typography" "^4.0.0" + tslib "^1.9.3" + +"@material/form-field@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/form-field/-/form-field-4.0.0.tgz#196dc80fa35876ee2d6e4321e8186429ae9401bb" + integrity sha512-M5+c7mitD4NIH+3kU2+uX1mUJJJPNYSUN3bAmhjbMxMISY9jkrbv9k5T9jlWRaIqvO6qJ1aDFOQASV8CsWstYQ== + dependencies: + "@material/base" "^4.0.0" + "@material/feature-targeting" "^4.0.0" + "@material/ripple" "^4.0.0" + "@material/rtl" "^4.0.0" + "@material/theme" "^4.0.0" + "@material/typography" "^4.0.0" tslib "^1.9.3" -"@material/form-field@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/form-field/-/form-field-4.0.0-canary.e851d4f40.0.tgz#c1c7213f72a301a2610b9bd95512e3bfab9f5e94" - integrity sha512-5ecf7dfFwHQ9uY+xeGcxHuB+BelitLHOQ/6w53F6z7Np3dOp8mejv7NVtQ6quXC1HtOSDRHfutosMGDriCGN1w== - dependencies: - "@material/base" "^4.0.0-canary.e851d4f40.0" - "@material/feature-targeting" "^4.0.0-canary.e851d4f40.0" - "@material/ripple" "^4.0.0-canary.e851d4f40.0" - "@material/rtl" "^4.0.0-canary.e851d4f40.0" - "@material/theme" "^4.0.0-canary.e851d4f40.0" - "@material/typography" "^4.0.0-canary.e851d4f40.0" +"@material/grid-list@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/grid-list/-/grid-list-4.0.0.tgz#0436a9eeed8b4414587c077e0c43f8828a54d2a9" + integrity sha512-HdkvmBqa8jx7j9+NuWlSawCTGN8Ico2wjWY0tpT+0tiTa3xbh2rdGAMIu4przT5Quyz/a9DDRMSIM+xbLHsUOQ== + dependencies: + "@material/base" "^4.0.0" + "@material/feature-targeting" "^4.0.0" + "@material/rtl" "^4.0.0" + "@material/theme" "^4.0.0" + "@material/typography" "^4.0.0" tslib "^1.9.3" -"@material/grid-list@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/grid-list/-/grid-list-4.0.0-canary.e851d4f40.0.tgz#fe6fbfc5156b667c27d1708802d655c7a95bcb2d" - integrity sha512-ZDyx50UjrujiJUAyjciw3rQ3b39ox+s9VWE7PtL2bYmp0GcaRUpepIgU03RVNclcGbjADhRvakmjVKp0Co86jg== +"@material/icon-button@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/icon-button/-/icon-button-4.0.0.tgz#f7293462f1b4967712f9b8755b87c2228dcccc3d" + integrity sha512-b1SyWtr2cwlKgIVo+irxRgW0lpIzauADLAxQEJ8/RTO9qVFviohJUnS+5QQCkC5zex5Q52OmQ+aNl0KRjkUdvQ== dependencies: - "@material/base" "^4.0.0-canary.e851d4f40.0" - "@material/feature-targeting" "^4.0.0-canary.e851d4f40.0" - "@material/rtl" "^4.0.0-canary.e851d4f40.0" - "@material/theme" "^4.0.0-canary.e851d4f40.0" - "@material/typography" "^4.0.0-canary.e851d4f40.0" + "@material/base" "^4.0.0" + "@material/feature-targeting" "^4.0.0" + "@material/ripple" "^4.0.0" + "@material/theme" "^4.0.0" tslib "^1.9.3" -"@material/icon-button@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/icon-button/-/icon-button-4.0.0-canary.e851d4f40.0.tgz#dad3035dff1baaa2e1c5753dd9af86c5e4def239" - integrity sha512-QypjUumYnNqJ1zQ/DcP9UNpgLbPOkW3m7/yyC6NfGKH/X0zmJg7dSrg8x8dbu2QruG4nBW1Rs351KvHczYT+QA== +"@material/image-list@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/image-list/-/image-list-4.0.0.tgz#e93555671ce00d9fa6a2f2ca337a26d895aa817f" + integrity sha512-7RvYp8f2elV/fhtANNdr1RhFus5XJuHG+EK01G5C3VMGeBdrvkdpAQ7lzQ1FxUQ1F10cUNaH+kw+cLx9qh8p5A== dependencies: - "@material/base" "^4.0.0-canary.e851d4f40.0" - "@material/feature-targeting" "^4.0.0-canary.e851d4f40.0" - "@material/ripple" "^4.0.0-canary.e851d4f40.0" - "@material/theme" "^4.0.0-canary.e851d4f40.0" - tslib "^1.9.3" + "@material/feature-targeting" "^4.0.0" + "@material/shape" "^4.0.0" + "@material/theme" "^4.0.0" + "@material/typography" "^4.0.0" + +"@material/layout-grid@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/layout-grid/-/layout-grid-4.0.0.tgz#dd425336710687c3a70cb309b741040fb328c92c" + integrity sha512-ljhdyEzmQGTGTxR7nVgnrsSImbMEmWM/q1/1XvnQcOJTPCqS/3ziXWCVADjgdDvE/WKJkg2nmm8bFg2qnPnWgw== -"@material/image-list@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/image-list/-/image-list-4.0.0-canary.e851d4f40.0.tgz#adbd39966b1ecddf1504399cc95f0891397c3cf8" - integrity sha512-ZjCKwrwhPBHQfU4r+G+tlwO4MzIXJEVnGLLpxxtpb4fhaeKSz4udzuwdBgZwz7gVZHT92kn2gVP+qQTenSSA9Q== - dependencies: - "@material/feature-targeting" "^4.0.0-canary.e851d4f40.0" - "@material/shape" "^4.0.0-canary.e851d4f40.0" - "@material/theme" "^4.0.0-canary.e851d4f40.0" - "@material/typography" "^4.0.0-canary.e851d4f40.0" - -"@material/layout-grid@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/layout-grid/-/layout-grid-4.0.0-canary.e851d4f40.0.tgz#2a6406b1e0a36b3517550acca17152ad16e9cc1b" - integrity sha512-1zc2KfRpUuiwwZqju9nBZJvBVI1pISq647UHCrR+ePsiRKPtaGA5q31UuZYL4VQQPqZFqAaQZIUAcmzIsIsIsA== - -"@material/line-ripple@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/line-ripple/-/line-ripple-4.0.0-canary.e851d4f40.0.tgz#1046be11bcae851b4bb57cc6528f5e72da331680" - integrity sha512-yd5IuKH1zDIMQHiYa9T6viv0Wq3XiWI7oHbpKCH8GP41Mz1yoZO7S1lEUsCTUgQGnQMh6pq/IiEgssbg3VllAQ== - dependencies: - "@material/animation" "^4.0.0-canary.e851d4f40.0" - "@material/base" "^4.0.0-canary.e851d4f40.0" - "@material/theme" "^4.0.0-canary.e851d4f40.0" +"@material/line-ripple@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/line-ripple/-/line-ripple-4.0.0.tgz#e47eb1fe3ce7e28b36e5271c879dc59fee3bd19b" + integrity sha512-+vrgKlb2gUBIKxlzVKLn/tX76qJ0Z19RkH2i7mh4IdH8KxeEai8NQQYWqeOOKtyp8JbH0ObGyqJCwPo2VbHDmw== + dependencies: + "@material/animation" "^4.0.0" + "@material/base" "^4.0.0" + "@material/theme" "^4.0.0" tslib "^1.9.3" -"@material/linear-progress@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/linear-progress/-/linear-progress-4.0.0-canary.e851d4f40.0.tgz#b0f3cda668fba0b3b356566b18ec653cf91b4b28" - integrity sha512-hkkm+kBSfVfVKUnMwxrRlmBu03hMhRUZ9KTmxtyYoKwMhty1k4pbLXFEih94qW/NU9mFwDT1RxuPGtk9pdk/0g== +"@material/linear-progress@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/linear-progress/-/linear-progress-4.0.0.tgz#b40d331dc03a9b8bf3ff8a905e0c8eac3458ffb2" + integrity sha512-4QUEaK/FpXer4XQ+8lSbYyKZjprERXoEmazgQ6MgR7RQ8gyQ/T++ecHaDf5ioP6vak3JPHClKciJ911bNcsiSg== dependencies: - "@material/animation" "^4.0.0-canary.e851d4f40.0" - "@material/base" "^4.0.0-canary.e851d4f40.0" - "@material/feature-targeting" "^4.0.0-canary.e851d4f40.0" - "@material/theme" "^4.0.0-canary.e851d4f40.0" + "@material/animation" "^4.0.0" + "@material/base" "^4.0.0" + "@material/feature-targeting" "^4.0.0" + "@material/theme" "^4.0.0" tslib "^1.9.3" -"@material/list@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/list/-/list-4.0.0-canary.e851d4f40.0.tgz#96a00f206f544bc40591f72badadb09a2d0d3fa6" - integrity sha512-GD3E/wh8YwgwG/UkrokO2YvMOJqiVdAFhMHdQLH4uDttADQCnLcKWi0nVTzf7+jioYSBdsS5p7GXxh01X5YqBQ== - dependencies: - "@material/base" "^4.0.0-canary.e851d4f40.0" - "@material/dom" "^4.0.0-canary.e851d4f40.0" - "@material/feature-targeting" "^4.0.0-canary.e851d4f40.0" - "@material/ripple" "^4.0.0-canary.e851d4f40.0" - "@material/rtl" "^4.0.0-canary.e851d4f40.0" - "@material/shape" "^4.0.0-canary.e851d4f40.0" - "@material/theme" "^4.0.0-canary.e851d4f40.0" - "@material/typography" "^4.0.0-canary.e851d4f40.0" +"@material/list@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/list/-/list-4.0.0.tgz#206e13920d070c2f538027e0b4905bc2b903e64d" + integrity sha512-ximtqMQzi+bnnFy1jrdzMUH7jq169XVexCykumxoLI1PbVx4imQ0G3R6LIfJiafbxbBYawfwySZfMXTJkDML7g== + dependencies: + "@material/base" "^4.0.0" + "@material/density" "^4.0.0" + "@material/dom" "^4.0.0" + "@material/feature-targeting" "^4.0.0" + "@material/ripple" "^4.0.0" + "@material/rtl" "^4.0.0" + "@material/shape" "^4.0.0" + "@material/theme" "^4.0.0" + "@material/typography" "^4.0.0" tslib "^1.9.3" -"@material/menu-surface@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/menu-surface/-/menu-surface-4.0.0-canary.e851d4f40.0.tgz#981bc187000d41960f701221167ab21f5613d4af" - integrity sha512-/DTN+HnoGc3E+XU+GRd0p5oJxGAVuYUcP9HGS/JtWRH8k98wfZHy2ZXPmJya3c/mg8XTjyNuUz0jD92mfgBc3A== - dependencies: - "@material/animation" "^4.0.0-canary.e851d4f40.0" - "@material/base" "^4.0.0-canary.e851d4f40.0" - "@material/elevation" "^4.0.0-canary.e851d4f40.0" - "@material/feature-targeting" "^4.0.0-canary.e851d4f40.0" - "@material/rtl" "^4.0.0-canary.e851d4f40.0" - "@material/shape" "^4.0.0-canary.e851d4f40.0" - "@material/theme" "^4.0.0-canary.e851d4f40.0" +"@material/menu-surface@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/menu-surface/-/menu-surface-4.0.0.tgz#6de670bfbc5d0075f26baf58e46d00a91854131f" + integrity sha512-rEsJMJKL3zr8sytH6M25c989vy2HrIndBCbHs51PYYNzMDYbdEyf//UC/ZnoT4fu/Pq5E90+YcLZDpifES3axA== + dependencies: + "@material/animation" "^4.0.0" + "@material/base" "^4.0.0" + "@material/elevation" "^4.0.0" + "@material/feature-targeting" "^4.0.0" + "@material/rtl" "^4.0.0" + "@material/shape" "^4.0.0" + "@material/theme" "^4.0.0" tslib "^1.9.3" -"@material/menu@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/menu/-/menu-4.0.0-canary.e851d4f40.0.tgz#1be4f0dc6ef27924c6794e1f7f7eb0b5ccfba017" - integrity sha512-SCzY19KgAgAAqPgc+W26XFZEFN4+IAoXbiZPycrIdjtcxVcGWdegs6Lj4aOsTYBLSqAnBCidH17JAqXKT8/PXw== - dependencies: - "@material/base" "^4.0.0-canary.e851d4f40.0" - "@material/dom" "^4.0.0-canary.e851d4f40.0" - "@material/feature-targeting" "^4.0.0-canary.e851d4f40.0" - "@material/list" "^4.0.0-canary.e851d4f40.0" - "@material/menu-surface" "^4.0.0-canary.e851d4f40.0" - "@material/ripple" "^4.0.0-canary.e851d4f40.0" - "@material/rtl" "^4.0.0-canary.e851d4f40.0" +"@material/menu@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/menu/-/menu-4.0.0.tgz#febe9194892daea9dd2504a2a38bafc5c76864c1" + integrity sha512-jI8ImB/TXWUi8V0ymdmnnnrJOrJ8oTFcBI1VZ0FcL/5/pMvSeTGjxbJs44/5ZxSbaIAPr2r5K5/r9ZRZPdbNWA== + dependencies: + "@material/base" "^4.0.0" + "@material/dom" "^4.0.0" + "@material/feature-targeting" "^4.0.0" + "@material/list" "^4.0.0" + "@material/menu-surface" "^4.0.0" + "@material/ripple" "^4.0.0" + "@material/rtl" "^4.0.0" tslib "^1.9.3" -"@material/notched-outline@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/notched-outline/-/notched-outline-4.0.0-canary.e851d4f40.0.tgz#b142b7c6de922254074db26bfbdf6f8c6278defc" - integrity sha512-5vdXyxMWlJQFqSULlozzQt/MUq7lfVyckhtvTx7SGwFumjlFtZGOrWJOa1+KQiZo48DJQx6wu69MRq8IWghEQg== - dependencies: - "@material/base" "^4.0.0-canary.e851d4f40.0" - "@material/floating-label" "^4.0.0-canary.e851d4f40.0" - "@material/rtl" "^4.0.0-canary.e851d4f40.0" - "@material/shape" "^4.0.0-canary.e851d4f40.0" - "@material/theme" "^4.0.0-canary.e851d4f40.0" +"@material/notched-outline@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/notched-outline/-/notched-outline-4.0.0.tgz#63c8d1f856de032b3c9a9f2654419de86f4b2b4a" + integrity sha512-9WNG7dZS83nu72kmoknA3XyvZQIxx8QBjEB2Q2KGyRp4Q8zrzWxfcvTYgiOsYgvz013JnTqaqe4g0wjl6v789g== + dependencies: + "@material/base" "^4.0.0" + "@material/floating-label" "^4.0.0" + "@material/rtl" "^4.0.0" + "@material/shape" "^4.0.0" + "@material/theme" "^4.0.0" tslib "^1.9.3" -"@material/radio@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/radio/-/radio-4.0.0-canary.e851d4f40.0.tgz#2ace187bea8cb19bd5f5a3fb32d4c8c8ec03d0ab" - integrity sha512-xUxJYdxDcAdrd68Cr8os+1ozZk8B5QZSB/uFdnByw1r21wIxK9eek7nRz8Q79QSZRCpDpbU/N0dE8pSlHvtN/w== - dependencies: - "@material/animation" "^4.0.0-canary.e851d4f40.0" - "@material/base" "^4.0.0-canary.e851d4f40.0" - "@material/dom" "^4.0.0-canary.e851d4f40.0" - "@material/feature-targeting" "^4.0.0-canary.e851d4f40.0" - "@material/ripple" "^4.0.0-canary.e851d4f40.0" - "@material/theme" "^4.0.0-canary.e851d4f40.0" +"@material/radio@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/radio/-/radio-4.0.0.tgz#04ba5cddcac5540d32b33474c4a5eb50b4bd7860" + integrity sha512-3+TkORjxHwhI1SdiBWG3uvfx87LNBFlLMqLJISQsEUegUWGChNnp1DnkZIUqAJ1lXBHZsCjJFUrxKWE4RZ5hVA== + dependencies: + "@material/animation" "^4.0.0" + "@material/base" "^4.0.0" + "@material/density" "^4.0.0" + "@material/dom" "^4.0.0" + "@material/feature-targeting" "^4.0.0" + "@material/ripple" "^4.0.0" + "@material/theme" "^4.0.0" + "@material/touch-target" "^4.0.0" tslib "^1.9.3" -"@material/ripple@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/ripple/-/ripple-4.0.0-canary.e851d4f40.0.tgz#509e487066cb73f2d9f311c18c3b82a945a40ed8" - integrity sha512-NYiDfxea/L7pM9uA6h8FogOCWm7qDjUHzfzmR3nnGL0I2RCXOYuKkbpjqBhlarX3xBz8SKmq+3Jl/UEoc6C9Aw== - dependencies: - "@material/animation" "^4.0.0-canary.e851d4f40.0" - "@material/base" "^4.0.0-canary.e851d4f40.0" - "@material/dom" "^4.0.0-canary.e851d4f40.0" - "@material/feature-targeting" "^4.0.0-canary.e851d4f40.0" - "@material/theme" "^4.0.0-canary.e851d4f40.0" +"@material/ripple@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/ripple/-/ripple-4.0.0.tgz#906ba421a3e6c68651d829d44c50a95060aa1e75" + integrity sha512-9BLIOvyCP5sM+fQpLlcJZWyrHguusJq8E5A1pxg0wQwputOyaPBM7recHhYkJmVjzRpTcPgf1PkvkpN6DKGcNg== + dependencies: + "@material/animation" "^4.0.0" + "@material/base" "^4.0.0" + "@material/dom" "^4.0.0" + "@material/feature-targeting" "^4.0.0" + "@material/theme" "^4.0.0" tslib "^1.9.3" -"@material/rtl@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/rtl/-/rtl-4.0.0-canary.e851d4f40.0.tgz#a578baa94ed166c93700a379b0903fd9812c4e29" - integrity sha512-Xo7BZJ82Ba5UZsE8uGTX5P21FDcVjJ4mhRptH2ovaPo6w8KpA29eYOi6zbaRkDEFU9YbSrekTmfRarui4ahbbw== - -"@material/select@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/select/-/select-4.0.0-canary.e851d4f40.0.tgz#a3bb47fb6a8e91e91073c375daeb7f1274ee284d" - integrity sha512-9ZYqhXEw+VJaUUsMRHuuarMT1ag8nc7iY5ivoCeJs05+sdmHFKgA93W65yTZlt1M5HELr2px/oNwYzAFmWHltA== - dependencies: - "@material/animation" "^4.0.0-canary.e851d4f40.0" - "@material/base" "^4.0.0-canary.e851d4f40.0" - "@material/floating-label" "^4.0.0-canary.e851d4f40.0" - "@material/line-ripple" "^4.0.0-canary.e851d4f40.0" - "@material/menu" "^4.0.0-canary.e851d4f40.0" - "@material/menu-surface" "^4.0.0-canary.e851d4f40.0" - "@material/notched-outline" "^4.0.0-canary.e851d4f40.0" - "@material/ripple" "^4.0.0-canary.e851d4f40.0" - "@material/rtl" "^4.0.0-canary.e851d4f40.0" - "@material/shape" "^4.0.0-canary.e851d4f40.0" - "@material/theme" "^4.0.0-canary.e851d4f40.0" - "@material/typography" "^4.0.0-canary.e851d4f40.0" +"@material/rtl@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/rtl/-/rtl-4.0.0.tgz#bc07e0a7c47174b2542862c252b0e35b44329c47" + integrity sha512-AP8zByVDEWAJVJoxByVccUbH+BX24IeG7ol+L6Qd8JjzPpz1fzPVJ4BeDNaF0a6sXtHsRmj2zN5dsx/BGC3IHg== + +"@material/select@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/select/-/select-4.0.0.tgz#18d3428a72277858ca92fae543420b4b7f1ec247" + integrity sha512-VRGC+m3T0TR+qxT5rvf32QgpMlYRmTW7MHwUIfVBlHWRyoOEEwQ4yiExiChoudwaUMAamSCPRQNK08OdD1Jccw== + dependencies: + "@material/animation" "^4.0.0" + "@material/base" "^4.0.0" + "@material/floating-label" "^4.0.0" + "@material/line-ripple" "^4.0.0" + "@material/menu" "^4.0.0" + "@material/menu-surface" "^4.0.0" + "@material/notched-outline" "^4.0.0" + "@material/ripple" "^4.0.0" + "@material/rtl" "^4.0.0" + "@material/shape" "^4.0.0" + "@material/theme" "^4.0.0" + "@material/typography" "^4.0.0" tslib "^1.9.3" -"@material/shape@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/shape/-/shape-4.0.0-canary.e851d4f40.0.tgz#be53bf13b9b84b89383fa3033372184ff3701af5" - integrity sha512-i1v7xS4pI+bddTTlgSpO4pZJhgF4nB4yp50WqKVKT4VzwaVYETyMSW2PnWJ6TUerH9IAz/BaeqVI8FGWdYvoUA== - dependencies: - "@material/feature-targeting" "^4.0.0-canary.e851d4f40.0" - -"@material/slider@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/slider/-/slider-4.0.0-canary.e851d4f40.0.tgz#06aa2e3900f29ba07182d1a79b44be704a6a28ff" - integrity sha512-CVNrgoML+VCmm1o+C1bUWtzyxzlyIGMKCUZuxgBwwfBKiZ58pJvRdYwQJnpdMYaPxeftb4EPEU+UskK7f3hnfg== - dependencies: - "@material/animation" "^4.0.0-canary.e851d4f40.0" - "@material/base" "^4.0.0-canary.e851d4f40.0" - "@material/dom" "^4.0.0-canary.e851d4f40.0" - "@material/feature-targeting" "^4.0.0-canary.e851d4f40.0" - "@material/rtl" "^4.0.0-canary.e851d4f40.0" - "@material/theme" "^4.0.0-canary.e851d4f40.0" - "@material/typography" "^4.0.0-canary.e851d4f40.0" +"@material/shape@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/shape/-/shape-4.0.0.tgz#ddf4dcbfd290d367f80b26014fee0a1f490dc3cb" + integrity sha512-wmr05YBrEL462QPiJ+t9xh5RqxzylXYo/8DVZnb/1WA9GZ6m38UK/8Awtip1cZAN34pzD/9p5AydyywlQVoI+g== + dependencies: + "@material/feature-targeting" "^4.0.0" + +"@material/slider@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/slider/-/slider-4.0.0.tgz#7a1596f7a31838e18cb7bbe15dec2d1131f82bb1" + integrity sha512-00lrfgvVJWSgI1ovnixzsY6YDJPDSfxO3DRpY15d1mW5UThh6Knb9MQFTWShj5NaMEOTepOpH1m9P79+TyBlTA== + dependencies: + "@material/animation" "^4.0.0" + "@material/base" "^4.0.0" + "@material/dom" "^4.0.0" + "@material/feature-targeting" "^4.0.0" + "@material/rtl" "^4.0.0" + "@material/theme" "^4.0.0" + "@material/typography" "^4.0.0" tslib "^1.9.3" -"@material/snackbar@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/snackbar/-/snackbar-4.0.0-canary.e851d4f40.0.tgz#6b55f0bfb50e1913f96b1a650c97cad4ec3942b4" - integrity sha512-8gIaKsFDYQ34eWrOPAAZCId7d45mApQmdHYjJ9Ou4EnCiE/C4Sw/xyeG+iv7iM51l8IKBBcYqPr72o6A/WAQrw== - dependencies: - "@material/animation" "^4.0.0-canary.e851d4f40.0" - "@material/base" "^4.0.0-canary.e851d4f40.0" - "@material/button" "^4.0.0-canary.e851d4f40.0" - "@material/dom" "^4.0.0-canary.e851d4f40.0" - "@material/feature-targeting" "^4.0.0-canary.e851d4f40.0" - "@material/icon-button" "^4.0.0-canary.e851d4f40.0" - "@material/ripple" "^4.0.0-canary.e851d4f40.0" - "@material/rtl" "^4.0.0-canary.e851d4f40.0" - "@material/shape" "^4.0.0-canary.e851d4f40.0" - "@material/theme" "^4.0.0-canary.e851d4f40.0" - "@material/typography" "^4.0.0-canary.e851d4f40.0" +"@material/snackbar@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/snackbar/-/snackbar-4.0.0.tgz#347445f9dc5e783c673734df909aff02bc2b29a1" + integrity sha512-QiMgRCvoOkacbYCb0UgeU13g9FqoSMbRU10eY+X50iwV6UHzUiGKwEMvgsG8kni2F/VdQzlnP6aYMkhIaAhdmA== + dependencies: + "@material/animation" "^4.0.0" + "@material/base" "^4.0.0" + "@material/button" "^4.0.0" + "@material/dom" "^4.0.0" + "@material/feature-targeting" "^4.0.0" + "@material/icon-button" "^4.0.0" + "@material/ripple" "^4.0.0" + "@material/rtl" "^4.0.0" + "@material/shape" "^4.0.0" + "@material/theme" "^4.0.0" + "@material/typography" "^4.0.0" tslib "^1.9.3" -"@material/switch@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/switch/-/switch-4.0.0-canary.e851d4f40.0.tgz#29a0fc0c98f78c5771df9b80d9b1bfb270e4fff5" - integrity sha512-l8uROVIJEhInlxbQr/7FYsK+vWkvz6yCSgax4zqlsa8FqTkjE8M1+mJDrmPIDZJnt5tUTbWkQfg2ck89syzTbw== - dependencies: - "@material/animation" "^4.0.0-canary.e851d4f40.0" - "@material/base" "^4.0.0-canary.e851d4f40.0" - "@material/dom" "^4.0.0-canary.e851d4f40.0" - "@material/elevation" "^4.0.0-canary.e851d4f40.0" - "@material/feature-targeting" "^4.0.0-canary.e851d4f40.0" - "@material/ripple" "^4.0.0-canary.e851d4f40.0" - "@material/rtl" "^4.0.0-canary.e851d4f40.0" - "@material/theme" "^4.0.0-canary.e851d4f40.0" +"@material/switch@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/switch/-/switch-4.0.0.tgz#5c5da30389f48f4f5245eb9f325cbc0e5f6bf2d4" + integrity sha512-90fvz0bYgeGQNBD14rdTOI/dvAPANwDQLIodOpE/r2bOZjge1K0rHSAm+TVwNCnrrM9HGmG8Ew0sIeEIj3jMMw== + dependencies: + "@material/animation" "^4.0.0" + "@material/base" "^4.0.0" + "@material/dom" "^4.0.0" + "@material/elevation" "^4.0.0" + "@material/feature-targeting" "^4.0.0" + "@material/ripple" "^4.0.0" + "@material/rtl" "^4.0.0" + "@material/theme" "^4.0.0" tslib "^1.9.3" -"@material/tab-bar@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/tab-bar/-/tab-bar-4.0.0-canary.e851d4f40.0.tgz#a518242cd80e542b718f8ee92b73ef616eee3507" - integrity sha512-6dqrOrB0GzGW8e0pGz6OGRK6WsZjwBFT7fu8cWHPKkvtPW1T2mVSxd7EzaXK3zOw7+IXPKAHrWkJxv2iKCBDrg== - dependencies: - "@material/base" "^4.0.0-canary.e851d4f40.0" - "@material/density" "^4.0.0-canary.e851d4f40.0" - "@material/elevation" "^4.0.0-canary.e851d4f40.0" - "@material/feature-targeting" "^4.0.0-canary.e851d4f40.0" - "@material/tab" "^4.0.0-canary.e851d4f40.0" - "@material/tab-scroller" "^4.0.0-canary.e851d4f40.0" +"@material/tab-bar@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/tab-bar/-/tab-bar-4.0.0.tgz#2e324f2bfcd556ac68581690020bde3dc883a1fc" + integrity sha512-lZAMPJjshirP1eXsX+HKFyfqDfvreEY2864gBsVRWIhWcoA6aozhWXjVt5HE7MeyEShpEQgahWKbAeeRAwgyVw== + dependencies: + "@material/animation" "^4.0.0" + "@material/base" "^4.0.0" + "@material/density" "^4.0.0" + "@material/elevation" "^4.0.0" + "@material/feature-targeting" "^4.0.0" + "@material/tab" "^4.0.0" + "@material/tab-scroller" "^4.0.0" tslib "^1.9.3" -"@material/tab-indicator@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/tab-indicator/-/tab-indicator-4.0.0-canary.e851d4f40.0.tgz#340811761c3c00121ccbe51097781c4c559ada31" - integrity sha512-zy86J93Le2wCc/Q4bTqjqdVjYn/5qaAD9rKUpWTi634vylAsPPmzsTfHrgqm2Z9Kb4fpVujBUvbN6NFo/Eqrxg== +"@material/tab-indicator@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/tab-indicator/-/tab-indicator-4.0.0.tgz#3c9c27a6880205d3addaaee8dab971fea00dcd31" + integrity sha512-povMuMcW931yCzZMTzquSsATlks7BzTeBWPk+GxOk+x/0bb/B1URmejELWbzBpl74wAPdO2UdRtPANp+A30cQg== dependencies: - "@material/animation" "^4.0.0-canary.e851d4f40.0" - "@material/base" "^4.0.0-canary.e851d4f40.0" - "@material/feature-targeting" "^4.0.0-canary.e851d4f40.0" - "@material/theme" "^4.0.0-canary.e851d4f40.0" + "@material/animation" "^4.0.0" + "@material/base" "^4.0.0" + "@material/feature-targeting" "^4.0.0" + "@material/theme" "^4.0.0" tslib "^1.9.3" -"@material/tab-scroller@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/tab-scroller/-/tab-scroller-4.0.0-canary.e851d4f40.0.tgz#a42f2243c35101507a134dc2160e89c48c132527" - integrity sha512-vMy9AxkF3U2ClT/He6PYvzT8mJbWDGp194x9A8e/IY2hKkd/YN1S2wu2TR5vWIBihIq0GPFcwsA1mtWEt/5NHQ== - dependencies: - "@material/animation" "^4.0.0-canary.e851d4f40.0" - "@material/base" "^4.0.0-canary.e851d4f40.0" - "@material/dom" "^4.0.0-canary.e851d4f40.0" - "@material/feature-targeting" "^4.0.0-canary.e851d4f40.0" - "@material/tab" "^4.0.0-canary.e851d4f40.0" +"@material/tab-scroller@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/tab-scroller/-/tab-scroller-4.0.0.tgz#f8ea0094c36a1f0f49e85575015d6067477ff8a5" + integrity sha512-S2DnAW64U5TZ8GMlwmLi3XjCrnIxgz6kB02TAlzOfPlRlUfE/n1c5F1UbMjyED9kc39ZpxL6ppeKLDjdUuItpA== + dependencies: + "@material/animation" "^4.0.0" + "@material/base" "^4.0.0" + "@material/dom" "^4.0.0" + "@material/feature-targeting" "^4.0.0" + "@material/tab" "^4.0.0" tslib "^1.9.3" -"@material/tab@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/tab/-/tab-4.0.0-canary.e851d4f40.0.tgz#417929bd31465fcdc53a2be0c908f2383f099dd6" - integrity sha512-ktIZkjvqvycpZGKbXFdf2LSviLSGigZSFKgOHQVxJYBCBWS6V0FVV5pFEBWBHMJkl4Viy6THCh8MIqddg2HzDA== - dependencies: - "@material/base" "^4.0.0-canary.e851d4f40.0" - "@material/feature-targeting" "^4.0.0-canary.e851d4f40.0" - "@material/ripple" "^4.0.0-canary.e851d4f40.0" - "@material/rtl" "^4.0.0-canary.e851d4f40.0" - "@material/tab-indicator" "^4.0.0-canary.e851d4f40.0" - "@material/theme" "^4.0.0-canary.e851d4f40.0" - "@material/typography" "^4.0.0-canary.e851d4f40.0" +"@material/tab@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/tab/-/tab-4.0.0.tgz#33f80005620d8f6dc93cf3d70d2c6f43e7c4c83e" + integrity sha512-+IAI/BrlgTVSe39ad8e7Nfb7oE9FeJzb01RUPbJbYSi2h2bbQeaKF8fbQniBPVVmuIydx4Zc3CaY316hOcYW3g== + dependencies: + "@material/base" "^4.0.0" + "@material/feature-targeting" "^4.0.0" + "@material/ripple" "^4.0.0" + "@material/rtl" "^4.0.0" + "@material/tab-indicator" "^4.0.0" + "@material/theme" "^4.0.0" + "@material/typography" "^4.0.0" tslib "^1.9.3" -"@material/textfield@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/textfield/-/textfield-4.0.0-canary.e851d4f40.0.tgz#16241e5c51a3360ebb604f33691af815afbbc048" - integrity sha512-X6AMhu/qpk8ayZ+QMJ/2IAxdVdDP1ZS+9uNKubdVugr1O3rtAaL0oe2cH6j0iOkJjDzJePwjjUdkRr+xtMSqkg== - dependencies: - "@material/animation" "^4.0.0-canary.e851d4f40.0" - "@material/base" "^4.0.0-canary.e851d4f40.0" - "@material/dom" "^4.0.0-canary.e851d4f40.0" - "@material/floating-label" "^4.0.0-canary.e851d4f40.0" - "@material/line-ripple" "^4.0.0-canary.e851d4f40.0" - "@material/notched-outline" "^4.0.0-canary.e851d4f40.0" - "@material/ripple" "^4.0.0-canary.e851d4f40.0" - "@material/rtl" "^4.0.0-canary.e851d4f40.0" - "@material/shape" "^4.0.0-canary.e851d4f40.0" - "@material/theme" "^4.0.0-canary.e851d4f40.0" - "@material/typography" "^4.0.0-canary.e851d4f40.0" +"@material/textfield@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/textfield/-/textfield-4.0.0.tgz#3b39a1ed1aee166b0eb757237ef1359eba312f36" + integrity sha512-1Xg+nriTqFB8+5k8sGkR8LBeD3dRgNuhvwyU8XrUeAs5l/HMfn4CWgbEyZTaJ2EEtFPxnKGedAYqCEwXngwGWg== + dependencies: + "@material/animation" "^4.0.0" + "@material/base" "^4.0.0" + "@material/density" "^4.0.0" + "@material/dom" "^4.0.0" + "@material/floating-label" "^4.0.0" + "@material/line-ripple" "^4.0.0" + "@material/notched-outline" "^4.0.0" + "@material/ripple" "^4.0.0" + "@material/rtl" "^4.0.0" + "@material/shape" "^4.0.0" + "@material/theme" "^4.0.0" + "@material/typography" "^4.0.0" tslib "^1.9.3" -"@material/theme@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/theme/-/theme-4.0.0-canary.e851d4f40.0.tgz#313f75dbdc5bb6c1def3ec487f744b462b94eff2" - integrity sha512-071SZ8TYsoBzOvISiIMca9O2/eJNcp7q/KGU/DWeks8wd8ygTd1AQG+jWHrLNM/QLQbGw5drDWxJvLF6XQPYUQ== - dependencies: - "@material/feature-targeting" "^4.0.0-canary.e851d4f40.0" - -"@material/top-app-bar@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/top-app-bar/-/top-app-bar-4.0.0-canary.e851d4f40.0.tgz#ee10c0ae76cd9af32bde80372aaf7c88d78f5f85" - integrity sha512-hDKOnZ3LBy2nFF3mbh3F2TBRRhZCMI/UiyRAs0GPs/mrcVgU7awGisiGyGuAaffHMcApmQ22S7ddkL0guweNMQ== - dependencies: - "@material/animation" "^4.0.0-canary.e851d4f40.0" - "@material/base" "^4.0.0-canary.e851d4f40.0" - "@material/elevation" "^4.0.0-canary.e851d4f40.0" - "@material/icon-button" "^4.0.0-canary.e851d4f40.0" - "@material/ripple" "^4.0.0-canary.e851d4f40.0" - "@material/rtl" "^4.0.0-canary.e851d4f40.0" - "@material/shape" "^4.0.0-canary.e851d4f40.0" - "@material/theme" "^4.0.0-canary.e851d4f40.0" - "@material/typography" "^4.0.0-canary.e851d4f40.0" +"@material/theme@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/theme/-/theme-4.0.0.tgz#8de388fcdbae20fd09b02a3bdef3049bf2f623a8" + integrity sha512-vS4G4rusJTatTH50kSYO1U3UGN8EY9kGRvPaFsEFKikJBOqcR6KWK9H9/wCLqqd6nDNifEj9H2sdWw1AV4NA6Q== + dependencies: + "@material/feature-targeting" "^4.0.0" + +"@material/top-app-bar@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/top-app-bar/-/top-app-bar-4.0.0.tgz#f59d3c4a4fcb6e2ed7cc78e3642a751c62265b95" + integrity sha512-5IK7fA8c9dyfRngYLMp5gkoyE4iqdTSpMI1brn1pkPbxqym5ibXIHt808pIdOMv7liW+Bf5pVkuvnyjF8Xi+Ww== + dependencies: + "@material/animation" "^4.0.0" + "@material/base" "^4.0.0" + "@material/elevation" "^4.0.0" + "@material/icon-button" "^4.0.0" + "@material/ripple" "^4.0.0" + "@material/rtl" "^4.0.0" + "@material/shape" "^4.0.0" + "@material/theme" "^4.0.0" + "@material/typography" "^4.0.0" tslib "^1.9.3" -"@material/touch-target@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/touch-target/-/touch-target-4.0.0-canary.e851d4f40.0.tgz#ebf711b5bdd0a97ec9fcb195eaca0d7d08179d9d" - integrity sha512-uU+K1Xc07II6iHekQir1XxNlBI0yT0b5bMz0EhED5xmS7FMZCn5wCc3QEEBQru4vOwTtl3LhckVfbxiXYRz1aw== +"@material/touch-target@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/touch-target/-/touch-target-4.0.0.tgz#a7c8dea3dfdb9c13ca81a90ea7e0af33cf7e40ba" + integrity sha512-TM8xK1WwTZtP4vYQ7E7aZLdGKyP1GuG5Ilb0qlytX/gmC8Di/kRn6muDSZyeCCUcMXYth5Et0ceWtpNrcAQHMQ== dependencies: - "@material/feature-targeting" "^4.0.0-canary.e851d4f40.0" + "@material/feature-targeting" "^4.0.0" -"@material/typography@^4.0.0-canary.e851d4f40.0": - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/@material/typography/-/typography-4.0.0-canary.e851d4f40.0.tgz#08ba0fb9c32638bc51864f218952ea1a87e51443" - integrity sha512-8AeMJovgY5e4jOmnnsAfSAsZgxEo/HmHKkwpaZnxDuY2zGkRZnqQ+F147RpslkDWMJos235KFyAUuMuJ3okL6Q== +"@material/typography@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@material/typography/-/typography-4.0.0.tgz#57be7ac8b819f2ae29d48c9443b113d2f5585ecc" + integrity sha512-lUG4yjG9fl1ryNX4OVnOmi+EjhiV4WsWcYt4yzffHrFg1RfKuCAV59j7TtmlMfZIkNDwqK5jvk3oOpTRDFpL8Q== dependencies: - "@material/feature-targeting" "^4.0.0-canary.e851d4f40.0" + "@material/feature-targeting" "^4.0.0" "@microsoft/api-extractor-model@7.4.1": version "7.4.1" @@ -7714,55 +7722,55 @@ matchdep@^2.0.0: resolve "^1.4.0" stack-trace "0.0.10" -material-components-web@^4.0.0-canary.062ade5c0.0: - version "4.0.0-canary.e851d4f40.0" - resolved "https://registry.yarnpkg.com/material-components-web/-/material-components-web-4.0.0-canary.e851d4f40.0.tgz#a3c0539eca3a78498056ba4268115ab332c29658" - integrity sha512-QNv/KGq3zYdxqNrWJu9ksryEGHIzy0LWoNixR/4gaqV5Cick/b74+7u/qni81ZGib7A10Y8iYVo3kPASPnceVw== - dependencies: - "@material/animation" "^4.0.0-canary.e851d4f40.0" - "@material/auto-init" "^4.0.0-canary.e851d4f40.0" - "@material/base" "^4.0.0-canary.e851d4f40.0" - "@material/button" "^4.0.0-canary.e851d4f40.0" - "@material/card" "^4.0.0-canary.e851d4f40.0" - "@material/checkbox" "^4.0.0-canary.e851d4f40.0" - "@material/chips" "^4.0.0-canary.e851d4f40.0" - "@material/data-table" "^4.0.0-canary.e851d4f40.0" - "@material/density" "^4.0.0-canary.e851d4f40.0" - "@material/dialog" "^4.0.0-canary.e851d4f40.0" - "@material/dom" "^4.0.0-canary.e851d4f40.0" - "@material/drawer" "^4.0.0-canary.e851d4f40.0" - "@material/elevation" "^4.0.0-canary.e851d4f40.0" - "@material/fab" "^4.0.0-canary.e851d4f40.0" - "@material/feature-targeting" "^4.0.0-canary.e851d4f40.0" - "@material/floating-label" "^4.0.0-canary.e851d4f40.0" - "@material/form-field" "^4.0.0-canary.e851d4f40.0" - "@material/grid-list" "^4.0.0-canary.e851d4f40.0" - "@material/icon-button" "^4.0.0-canary.e851d4f40.0" - "@material/image-list" "^4.0.0-canary.e851d4f40.0" - "@material/layout-grid" "^4.0.0-canary.e851d4f40.0" - "@material/line-ripple" "^4.0.0-canary.e851d4f40.0" - "@material/linear-progress" "^4.0.0-canary.e851d4f40.0" - "@material/list" "^4.0.0-canary.e851d4f40.0" - "@material/menu" "^4.0.0-canary.e851d4f40.0" - "@material/menu-surface" "^4.0.0-canary.e851d4f40.0" - "@material/notched-outline" "^4.0.0-canary.e851d4f40.0" - "@material/radio" "^4.0.0-canary.e851d4f40.0" - "@material/ripple" "^4.0.0-canary.e851d4f40.0" - "@material/rtl" "^4.0.0-canary.e851d4f40.0" - "@material/select" "^4.0.0-canary.e851d4f40.0" - "@material/shape" "^4.0.0-canary.e851d4f40.0" - "@material/slider" "^4.0.0-canary.e851d4f40.0" - "@material/snackbar" "^4.0.0-canary.e851d4f40.0" - "@material/switch" "^4.0.0-canary.e851d4f40.0" - "@material/tab" "^4.0.0-canary.e851d4f40.0" - "@material/tab-bar" "^4.0.0-canary.e851d4f40.0" - "@material/tab-indicator" "^4.0.0-canary.e851d4f40.0" - "@material/tab-scroller" "^4.0.0-canary.e851d4f40.0" - "@material/textfield" "^4.0.0-canary.e851d4f40.0" - "@material/theme" "^4.0.0-canary.e851d4f40.0" - "@material/top-app-bar" "^4.0.0-canary.e851d4f40.0" - "@material/touch-target" "^4.0.0-canary.e851d4f40.0" - "@material/typography" "^4.0.0-canary.e851d4f40.0" +material-components-web@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/material-components-web/-/material-components-web-4.0.0.tgz#a4dfba8b8db6d81690451b3a4cd89d4e73de7722" + integrity sha512-wKptUuAVB5SN7GFbYAra3vaCZRkEVFXOd1Nfp3tT8KxYAGRWUjwu+kcp2rqSxJXsLtGGZbK8jcZZJR64PcUrdA== + dependencies: + "@material/animation" "^4.0.0" + "@material/auto-init" "^4.0.0" + "@material/base" "^4.0.0" + "@material/button" "^4.0.0" + "@material/card" "^4.0.0" + "@material/checkbox" "^4.0.0" + "@material/chips" "^4.0.0" + "@material/data-table" "^4.0.0" + "@material/density" "^4.0.0" + "@material/dialog" "^4.0.0" + "@material/dom" "^4.0.0" + "@material/drawer" "^4.0.0" + "@material/elevation" "^4.0.0" + "@material/fab" "^4.0.0" + "@material/feature-targeting" "^4.0.0" + "@material/floating-label" "^4.0.0" + "@material/form-field" "^4.0.0" + "@material/grid-list" "^4.0.0" + "@material/icon-button" "^4.0.0" + "@material/image-list" "^4.0.0" + "@material/layout-grid" "^4.0.0" + "@material/line-ripple" "^4.0.0" + "@material/linear-progress" "^4.0.0" + "@material/list" "^4.0.0" + "@material/menu" "^4.0.0" + "@material/menu-surface" "^4.0.0" + "@material/notched-outline" "^4.0.0" + "@material/radio" "^4.0.0" + "@material/ripple" "^4.0.0" + "@material/rtl" "^4.0.0" + "@material/select" "^4.0.0" + "@material/shape" "^4.0.0" + "@material/slider" "^4.0.0" + "@material/snackbar" "^4.0.0" + "@material/switch" "^4.0.0" + "@material/tab" "^4.0.0" + "@material/tab-bar" "^4.0.0" + "@material/tab-indicator" "^4.0.0" + "@material/tab-scroller" "^4.0.0" + "@material/textfield" "^4.0.0" + "@material/theme" "^4.0.0" + "@material/top-app-bar" "^4.0.0" + "@material/touch-target" "^4.0.0" + "@material/typography" "^4.0.0" mathml-tag-names@^2.1.0: version "2.1.1"