Skip to content

chore: update changelog with v7 changes #13672

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 18, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
102 changes: 100 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,101 @@
<a name="7.0.0"></a>
# 7.0.0 amethyst ammonite (2018-10-17)

### Highlights

* Support for [Drag and Drop](https://material.angular.io/cdk/drag-drop/overview) in `@angular/cdk/drag-drop`.
* Support for [Virtual Scrolling](https://material.angular.io/cdk/scrolling/overview) in `@angular/cdk/scrolling`.
* Support for native `<select>` element in `<mat-form-field>` .
* Added `<mat-action-list>`, a list where each item is a `<button>`.
* Updated component styles throughout the library matching the 2018 Material Design Spec refresh.
* Added more schematics, with schematics now available for table, drag and drop, tree, address form and more.
* Added CLI prompts when using `ng add` to assist in setting up HammerJS support, application theming and animations.
* 250+ bug/performance fixes


### Upgrading to 7.0

Using the Angular CLI, you can use the `ng update` command to automatically migrate to the new APIs in for Material and CDK.
```
ng update @angular/material
```

**NOTE:** If you are **using only the CDK** you can automatically migrate using `ng update @angular/cdk` instead.


### Breaking Changes

* **ripple:** deprecated `[matRippleSpeedFactor]` and `baseSpeedFactor` for the ripples have been removed. Use the new animation config instead.
* **overlay:** The `flexibleDiemsions` property on `CdkConnectedOverlay` has been renamed to `flexibleDimensions`
* **sidenav:** the constructor signature of the `MatDrawerContent` and `MatSidenavContent` has changed.
* **elevation:** Because `mat-elevation` usages have been moved out of component stylesheets, users who have
not invoked a theme mixin will not see any elevation shadows on Material components.
However, users that have created a custom theme which lacks the `elevation` property will
still see the default black shadows.

Additionally, users who want to use themed elevations in their custom components can create
their own shorthand mixin:

```sass
@import '~@angular/material/theming';

$myTheme: ...

@mixin my-elevation($zValue) {
@include mat-theme-elevation($zValue, $myTheme);
}

```

and then invoke `angular-material-theme` with the `$myTheme` variable.



### Marked for Deprecation
A number of items throughout the library have been deprecated and are expected to be removed in v8.
#### CDK
Collections
- `SelectionModel.onChange` has been deprecated, use `SelectionModel.changed` instead.

Scrolling
- `ScrollDispatchModule` has been deprecated, use `ScrollingModule` instead.

Table
- `CdkTable.setFooterRowDef` has been deprecated, use `CdkTable.addFooterRowDef` and `CdkTable.removeFooterRowDef` instead.
- `CdkTable.setHeaderRowDef` has been deprecated, use `CdkTable.addHeaderRowDef` and `CdkTable.removeHeaderRowDef` instead.

#### Material
Dialog
- `matDialogAnimations.slideDialog` has been deprecated, use `matDialogAnimations.dialogContainer` instead.
- `MatDialogRef.afterOpen` has been deprecated, use `MatDialogRef.afterOpened` instead.
- `MatDialogRef.afterClose` has been deprecated, use `MatDialogRef.afterClosed` instead.
- `MatDialog.afterOpen` has been deprecated, use `MatDialog.afterOpened` instead.

Form Field
- `<mat-placeholder>` has been deprecated, use `<mat-label>` instead.
- `MatPlaceholder` has been deprecated, use `MatLabel` instead.

Paginator
- `$mat-paginator-selector-trigger-min-width` has been deprecated, use `$mat-paginator-selector-trigger-width` instead.

Select
- `matSelectAnimations.fadeInContent` has been deprecated and will be removed without replacement.
- The setter method for `MatSelect.focused` has been deprecated, `MatSelect.focused` will become readonly.

Toolbar
- `$mat-toolbar-height-mobile-portrait` has been deprecated and will be removed without replacement.
- `$mat-toolbar-height-mobile-landscape` has been deprecated and will be removed without replacement.

**NOTE:** In addition to the specific deprecations listed above, many component constructor methods contain
optional parameters which are expected to become required in v8.


### Bug Fixes

* **icon:** not taking current path after initialization ([#13641](https://github.com/angular/material2/issues/13641)) ([df9ec7](https://github.com/angular/material2/commit/df9ec7))
* **list:** action list items clickable area not stretching the full width ([#13099](https://github.com/angular/material2/issues/13099)) ([f3057fa](https://github.com/angular/material2/commit/f3057fa))


<a name="7.0.0-rc.2"></a>
# 7.0.0-rc.2 (2018-10-15)

Expand Down Expand Up @@ -179,8 +277,8 @@ still see the default black shadows.
Additionally, users who want to use themed elevations in their custom components can create
their own shorthand mixin:

```
@import '~angular/material/theming';
```sass
@import '~@angular/material/theming';

$myTheme: ...

Expand Down
36 changes: 18 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@
"gulp": "gulp",
"stage-release": "bash ./tools/release/stage-release-bin.sh"
},
"version": "7.0.0-rc.2",
"requiredAngularVersion": ">=7.0.0-rc.0",
"version": "7.0.0",
"requiredAngularVersion": ">=7.0.0",
"dependencies": {
"@angular/animations": "7.0.0-rc.0",
"@angular/common": "7.0.0-rc.0",
"@angular/compiler": "7.0.0-rc.0",
"@angular/core": "7.0.0-rc.0",
"@angular/elements": "7.0.0-rc.0",
"@angular/forms": "7.0.0-rc.0",
"@angular/platform-browser": "7.0.0-rc.0",
"@angular/animations": "^7.0.0",
"@angular/common": "^7.0.0",
"@angular/compiler": "^7.0.0",
"@angular/core": "^7.0.0",
"@angular/elements": "^7.0.0",
"@angular/forms": "^7.0.0",
"@angular/platform-browser": "^7.0.0",
"@webcomponents/custom-elements": "^1.1.0",
"core-js": "^2.4.1",
"rxjs": "^6.3.3",
Expand All @@ -45,21 +45,21 @@
"zone.js": "^0.8.26"
},
"devDependencies": {
"@angular-devkit/core": "7.0.0-rc.1",
"@angular-devkit/schematics": "7.0.0-rc.1",
"@angular/compiler-cli": "7.0.0-rc.0",
"@angular/http": "7.0.0-rc.0",
"@angular/platform-browser-dynamic": "7.0.0-rc.0",
"@angular/platform-server": "7.0.0-rc.0",
"@angular/router": "7.0.0-rc.0",
"@angular/upgrade": "7.0.0-rc.0",
"@angular-devkit/core": "^7.0.1",
"@angular-devkit/schematics": "^7.0.1",
"@angular/compiler-cli": "^7.0.0",
"@angular/http": "^7.0.0",
"@angular/platform-browser-dynamic": "^7.0.0",
"@angular/platform-server": "^7.0.0",
"@angular/router": "^7.0.0",
"@angular/upgrade": "^7.0.0",
"@bazel/ibazel": "0.3.1",
"@bazel/karma": "0.20.2",
"@bazel/typescript": "0.20.2",
"@firebase/app-types": "^0.3.2",
"@google-cloud/storage": "^1.1.1",
"@octokit/rest": "^15.9.4",
"@schematics/angular": "7.0.0-rc.1",
"@schematics/angular": "^7.0.1",
"@types/chalk": "^0.4.31",
"@types/fs-extra": "^4.0.3",
"@types/glob": "^5.0.33",
Expand Down
145 changes: 75 additions & 70 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,43 +2,43 @@
# yarn lockfile v1


"@angular-devkit/[email protected].0-rc.1":
version "7.0.0-rc.1"
resolved "https://registry.yarnpkg.com/@angular-devkit/core/-/core-7.0.0-rc.1.tgz#809aa0c2416dab720e3388fbd2b19266a3c50763"
integrity sha512-x5Y7MNHMgnnU9iRqyx+WD7iIXVPylLwQlI/tjNDNVCpFthWejxlyFQg4+SXzewpZRaUE1l3I2pya9KCLakj7vQ==
"@angular-devkit/[email protected].1", "@angular-devkit/core@^7.0.1":
version "7.0.1"
resolved "https://registry.yarnpkg.com/@angular-devkit/core/-/core-7.0.1.tgz#78e6af0be6364532186bf4ac2e1da0f1685d95cb"
integrity sha512-IUzp2NdMJi4kqmYEZJeW3POzZGEv5QvSuiFqNpKXTztnXNRS9a91aPLYbfKlcYYsQ7ggguMRoaNbF33FzjKPUw==
dependencies:
ajv "6.5.3"
chokidar "2.0.4"
fast-json-stable-stringify "2.0.0"
rxjs "6.3.3"
source-map "0.7.3"

"@angular-devkit/[email protected].0-rc.1":
version "7.0.0-rc.1"
resolved "https://registry.yarnpkg.com/@angular-devkit/schematics/-/schematics-7.0.0-rc.1.tgz#704ece5e6862bbde2955423a39ad62d58c396255"
integrity sha512-pDZlosln6pUHmho5+m9sLphJN/uqr8CBgPOjTKWFAg+Hnvi4apXt8jbgSkhaxwWh2JROIYzb5uQWe6lHJS6L5w==
"@angular-devkit/[email protected].1", "@angular-devkit/schematics@^7.0.1":
version "7.0.1"
resolved "https://registry.yarnpkg.com/@angular-devkit/schematics/-/schematics-7.0.1.tgz#ccd7c5349c08aaf6224a28881bfeeacaf0ee0307"
integrity sha512-hjFtd0TSA4xBeM0MBEVD6bntCwHfJTKwPd03FiYm/bTbkEXxVGKcocNfOxf6g/+Mtp0rUhQHsxJdagewEagBaQ==
dependencies:
"@angular-devkit/core" "7.0.0-rc.1"
"@angular-devkit/core" "7.0.1"
rxjs "6.3.3"

"@angular/[email protected].0-rc.0":
version "7.0.0-rc.0"
resolved "https://registry.yarnpkg.com/@angular/animations/-/animations-7.0.0-rc.0.tgz#963e64fa7265d948a08cb32508cea1a24107e439"
integrity sha512-NpFcuCfM11O/YIGl1piH3VufOlfnJSK6iyw19ElXjw4mr/jvK4vcg9fEXbqBvmQ6uregoeadRSVCp8tdRJHOyw==
"@angular/animations@^7.0.0":
version "7.0.0"
resolved "https://registry.yarnpkg.com/@angular/animations/-/animations-7.0.0.tgz#5c9e1683063c29df10253b7dc5bb9b13694ee396"
integrity sha512-IYdryQXdYfPvhJpExLSAr0o9rlUeyVS++a6h/sjqN1dkUt/yJBHLRreuHx8Udvlj2nH70raHJgevk8FwhAkTdA==
dependencies:
tslib "^1.9.0"

"@angular/[email protected].0-rc.0":
version "7.0.0-rc.0"
resolved "https://registry.yarnpkg.com/@angular/common/-/common-7.0.0-rc.0.tgz#4872a430838653cbddfba759ccf1f9332c065171"
integrity sha512-YghYg9lFKF0cxaCiWfgByFbQ69dq521QDG93KX1mP+Tvc0jXXlbolDPYHGXx/VMUaoHq18VNzi7ZInpgc/pRBw==
"@angular/common@^7.0.0":
version "7.0.0"
resolved "https://registry.yarnpkg.com/@angular/common/-/common-7.0.0.tgz#29206614d2b8dc79e5207b7dc6f9fc559e9a24f2"
integrity sha512-jp6MA6EOq/a1m+F0c1aZC345pAYYYFpN1m7GMM91JlqkjzJMhyYVk+Bod9xQOEWadcpY+RFudG+jRsPCMO8bvQ==
dependencies:
tslib "^1.9.0"

"@angular/[email protected].0-rc.0":
version "7.0.0-rc.0"
resolved "https://registry.yarnpkg.com/@angular/compiler-cli/-/compiler-cli-7.0.0-rc.0.tgz#59f37f2409ce896cb73daa221dbd898855d12939"
integrity sha512-Nkd5UgSt0NHVLE/U3FIUmSJxGW47+9B4hfR5oDhC7gkUNaRQzi+PzzVYj7jOdDJjgHV+Y0KS3msiXWhUSY4gpw==
"@angular/compiler-cli@^7.0.0":
version "7.0.0"
resolved "https://registry.yarnpkg.com/@angular/compiler-cli/-/compiler-cli-7.0.0.tgz#fc3f2be293d00834ea5ba268e5aea796cc5deccc"
integrity sha512-fj5ixB4X3BsUnUukFx+dK5z2KkO7lCx5vlbUT2GOMbGCG43dIH6JKUfy5HbpCodLsJHG0gRgZZuY7/k+pbzS+g==
dependencies:
canonical-path "0.0.2"
chokidar "^1.4.2"
Expand All @@ -51,75 +51,75 @@
source-map "^0.6.1"
yargs "9.0.1"

"@angular/[email protected].0-rc.0":
version "7.0.0-rc.0"
resolved "https://registry.yarnpkg.com/@angular/compiler/-/compiler-7.0.0-rc.0.tgz#2dfd293ad6583f9574c9fe79354256206f594a51"
integrity sha512-ifVqB/xJtSzOlk8B39Ld2wMbYni6Ey7s5jc+u/0NMtdut+2Q61Ar+TKjJZ3vmta3df7QqHX5JcP0W6qICRHJ+w==
"@angular/compiler@^7.0.0":
version "7.0.0"
resolved "https://registry.yarnpkg.com/@angular/compiler/-/compiler-7.0.0.tgz#f953a213a01e4736e94fe1a370b07e13e2393b71"
integrity sha512-4fkohfGyG1BEpeYenOartuJmduyZ/R3XQx46hDDiR/9A8/Go4qLGkgr9Bd/JL/gPIR1XAHH9D5ii2sh+28ZEmA==
dependencies:
tslib "^1.9.0"

"@angular/[email protected].0-rc.0":
version "7.0.0-rc.0"
resolved "https://registry.yarnpkg.com/@angular/core/-/core-7.0.0-rc.0.tgz#c1d845d5d1718f96f542abe7ae86b64c280da3bb"
integrity sha512-DXTUjk1tUdgxj0AHQR6wAKLF+i/vSsRCBxFEzcBa944UJoYBDd1n2PIREzDMW0tkGMtxfHy3Ti+trSpPBLiDTA==
"@angular/core@^7.0.0":
version "7.0.0"
resolved "https://registry.yarnpkg.com/@angular/core/-/core-7.0.0.tgz#01e9db9074a1db1c47a32f745b787d1c86f5d61a"
integrity sha512-DjVyWNGBWKEeBvxeXy8FGBNlnr/W/tNygOZEd6/uCktcXTG4DNyNQrWuNZUKEpr7RuIT3YVMj+UNwgTq0jB/9g==
dependencies:
tslib "^1.9.0"

"@angular/[email protected].0-rc.0":
version "7.0.0-rc.0"
resolved "https://registry.yarnpkg.com/@angular/elements/-/elements-7.0.0-rc.0.tgz#eb8693b43265933e08dc10b28a70f2f5020596da"
integrity sha512-j6c3wB12Uu+VOSrxtXRnPO9DPQyOh8WP7GJBwa7ibfIZpGi5QvZNNdyJjEhSvYlJknRvR51juXBp5Jysn6EgGA==
"@angular/elements@^7.0.0":
version "7.0.0"
resolved "https://registry.yarnpkg.com/@angular/elements/-/elements-7.0.0.tgz#01059d317f9383b9675a1e1cd8eb3509812918d2"
integrity sha512-tVnOXU7w+/l2cfr2q5WaxXNuBmXC9WzDIYWw/xZp8zGMXk2X5N+oNIpVWGwLKsoGhmzdKhESLRNCxKF/I/7EiA==
dependencies:
tslib "^1.9.0"

"@angular/[email protected].0-rc.0":
version "7.0.0-rc.0"
resolved "https://registry.yarnpkg.com/@angular/forms/-/forms-7.0.0-rc.0.tgz#b86f5db32bc840948cd5c0f253ad9da5cef24789"
integrity sha512-ZfD2n+DojwreeP0sF4GuFrihActssogDUGGeDHge5qmyCqE/5hsOUFnNkg1pk4mO9xeIggdYygH0nRHqvifmFQ==
"@angular/forms@^7.0.0":
version "7.0.0"
resolved "https://registry.yarnpkg.com/@angular/forms/-/forms-7.0.0.tgz#672c306b13e94a20b72c096214642a326c43699a"
integrity sha512-rTg1UHq9gHR6zY3Kkip1KCm/YTck/rlR8CvVFIMwF0bdQxUCT51SXVn58nXts9yDaieABcGaQHNkQn1mARslgw==
dependencies:
tslib "^1.9.0"

"@angular/[email protected].0-rc.0":
version "7.0.0-rc.0"
resolved "https://registry.yarnpkg.com/@angular/http/-/http-7.0.0-rc.0.tgz#659c3ac6bd66199a726f1f46cdc800fc25e37922"
integrity sha512-f7IaVuen/WuHIKcP9mO3Jz4oy8Qxdwo3PS750Bk5VVVNBF4TILRr+96j37C7965ZBxeJQzfcGfXew7d5nObJ/A==
"@angular/http@^7.0.0":
version "7.0.0"
resolved "https://registry.yarnpkg.com/@angular/http/-/http-7.0.0.tgz#8add9bc7d548a0ff7dfe1fdb66d0024d4fc62dfa"
integrity sha512-gHMVKosbhXu+2sXccR1fnKpaJBtZioneW+jpG6CW3oo6f4L5FXnGGx/lqYLsgKFM8yHiOs6OXqvuHh8wYEjayA==
dependencies:
tslib "^1.9.0"

"@angular/[email protected].0-rc.0":
version "7.0.0-rc.0"
resolved "https://registry.yarnpkg.com/@angular/platform-browser-dynamic/-/platform-browser-dynamic-7.0.0-rc.0.tgz#b66d4c30ed25f67dab15e64462b959d039ada705"
integrity sha512-+SbuLnedoZNY6kfY5dV5p/+Rm4oj/DVwLhOWVFMtrqiaKRSrrEThH12FPKfQCqak51RjF4wDpJbqyWCGFDIbJA==
"@angular/platform-browser-dynamic@^7.0.0":
version "7.0.0"
resolved "https://registry.yarnpkg.com/@angular/platform-browser-dynamic/-/platform-browser-dynamic-7.0.0.tgz#2b2a50b5a8176bee257f90ee47b1d873502f7182"
integrity sha512-lH2KuH+Em1y/mTOE6yTJmsOxYkMbYKzKLP9gYzc9vZu3er1df6Jx6jxefeBmAr9v+kNCLnpnHWHz2y4GzAesJA==
dependencies:
tslib "^1.9.0"

"@angular/[email protected].0-rc.0":
version "7.0.0-rc.0"
resolved "https://registry.yarnpkg.com/@angular/platform-browser/-/platform-browser-7.0.0-rc.0.tgz#9e19e83bce242f9dde0457719d15a87a90e314cc"
integrity sha512-N52E4TjX3AwMT0EMZTikxQz+4rkdx1C9WnBSIuBR5rYwZi391mxexvES8PqE4UqEarm08eHvfxUwtMZU/FwC+w==
"@angular/platform-browser@^7.0.0":
version "7.0.0"
resolved "https://registry.yarnpkg.com/@angular/platform-browser/-/platform-browser-7.0.0.tgz#8c13a6380cf465b3628e5b576a1313e9b4976093"
integrity sha512-XyvL30d6meJ+SXlOmdR+sxoLdSvkQdmVNvpdvUzAHC/EqwA/byg4V3bTe5lpZmypclgFCjkGoTsz6uOnnwlQhw==
dependencies:
tslib "^1.9.0"

"@angular/[email protected].0-rc.0":
version "7.0.0-rc.0"
resolved "https://registry.yarnpkg.com/@angular/platform-server/-/platform-server-7.0.0-rc.0.tgz#ae03a549203b91e6335fb3b4401fe9c0c972fc00"
integrity sha512-OxvXlr4DQiT57vJf9wsKxO8fMnC3MBLCPK93HjWTDLgCRzH93FXbbp2+e7knqMAhELUCrC3e1MzNzzEulwkxPg==
"@angular/platform-server@^7.0.0":
version "7.0.0"
resolved "https://registry.yarnpkg.com/@angular/platform-server/-/platform-server-7.0.0.tgz#0a60f306f2d7d93daca2214f5afa2899dcd5f977"
integrity sha512-UJlPi/tlsYeNxMV1kNkGUUYDAW9HCq3Ihj8l8syCSOtlDsLhqu+5mqap4SBzoLUy+Qb/P3rLipgC2hrTqZ7+0Q==
dependencies:
domino "^2.1.0"
tslib "^1.9.0"
xhr2 "^0.1.4"

"@angular/[email protected].0-rc.0":
version "7.0.0-rc.0"
resolved "https://registry.yarnpkg.com/@angular/router/-/router-7.0.0-rc.0.tgz#6d6ddae8cf8bb15f9c0aaba2bb7487eb42248bd2"
integrity sha512-rT58TKCelP6BLw8Gzu6ZPeO86xzVFpDxVCLGmwEAmkWw8xG0gACkPYeVny4hsCkfx4nbz2w8upQksOKrudZt4w==
"@angular/router@^7.0.0":
version "7.0.0"
resolved "https://registry.yarnpkg.com/@angular/router/-/router-7.0.0.tgz#a4741d8dfa57ac68283fd1c84ac0926eb625e507"
integrity sha512-BK6Ho/7ckldFKc724piuPuMX0HPYXD8SUfwNj6yc0wgzDxdWzSmZj/xPEYll2pGNIA9x8Tg1NQKCD+kp1WXngw==
dependencies:
tslib "^1.9.0"

"@angular/[email protected].0-rc.0":
version "7.0.0-rc.0"
resolved "https://registry.yarnpkg.com/@angular/upgrade/-/upgrade-7.0.0-rc.0.tgz#90a2815f2387559907c9bc0fc696aa5acb9c3389"
integrity sha512-Ymg+ftMjaRmQThX0cumfmWg5ojxIFyHxKOeScg2H8D5Yel24kKuZB+RxmcgJ7gVoraTtROyKpSigeyJOLhI2Vw==
"@angular/upgrade@^7.0.0":
version "7.0.0"
resolved "https://registry.yarnpkg.com/@angular/upgrade/-/upgrade-7.0.0.tgz#06d68dd9a10da731ecf4fb3851e6b4186177fd93"
integrity sha512-TUmygNbtvYWmjwpu2GrowF3Qk8dMZ4yb9D8Ozfp4vtR2kCbrZc+Dl9cw5s1W2XOLmleHkB4SM6HQNvmluu++yw==
dependencies:
tslib "^1.9.0"

Expand Down Expand Up @@ -595,14 +595,14 @@
resolved "https://registry.yarnpkg.com/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570"
integrity sha1-p3c2C1s5oaLlEG+OhY8v0tBgxXA=

"@schematics/[email protected].0-rc.1":
version "7.0.0-rc.1"
resolved "https://registry.yarnpkg.com/@schematics/angular/-/angular-7.0.0-rc.1.tgz#f09bf2975516710f454538e3af5739ab2304b340"
integrity sha512-FTsCZGeumsUhZRU9wn9LFcUP3l3DjlVXK9DVriEE0wYTRPGo7AzamYkY7D7gY52I239WOtsJQQz0VdSi7cS42A==
"@schematics/angular@^7.0.1":
version "7.0.1"
resolved "https://registry.yarnpkg.com/@schematics/angular/-/angular-7.0.1.tgz#17ba40fe9665c60bcaa9a3cf722baf0862cf9b94"
integrity sha512-IJd7nT5+w3IkJOzXMvgevGJk3HnqoUKOessT3epTEoPvuTLGxljqVNDAaT3KSDDA1lDqTsLIXuT6kK2L5OJO1g==
dependencies:
"@angular-devkit/core" "7.0.0-rc.1"
"@angular-devkit/schematics" "7.0.0-rc.1"
typescript "3.1.1"
"@angular-devkit/core" "7.0.1"
"@angular-devkit/schematics" "7.0.1"
typescript "3.1.3"

"@sindresorhus/is@^0.7.0":
version "0.7.0"
Expand Down Expand Up @@ -6796,7 +6796,7 @@ karma@^3.0.0:
tmp "0.0.33"
useragent "2.2.1"

"karma@github:alexeagle/karma#fa1a84ac881485b5657cb669e9b4e5da77b79f0a":
karma@alexeagle/karma#fa1a84ac881485b5657cb669e9b4e5da77b79f0a:
version "1.7.1"
resolved "https://codeload.github.com/alexeagle/karma/tar.gz/fa1a84ac881485b5657cb669e9b4e5da77b79f0a"
dependencies:
Expand Down Expand Up @@ -11609,7 +11609,12 @@ typedarray@^0.0.6:
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=

[email protected], typescript@^3.1.1:
[email protected]:
version "3.1.3"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.1.3.tgz#01b70247a6d3c2467f70c45795ef5ea18ce191d5"
integrity sha512-+81MUSyX+BaSo+u2RbozuQk/UWx6hfG0a5gHu4ANEM4sU96XbuIyAB+rWBW1u70c6a5QuZfuYICn3s2UjuHUpA==

typescript@^3.1.1:
version "3.1.1"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.1.1.tgz#3362ba9dd1e482ebb2355b02dfe8bcd19a2c7c96"
integrity sha512-Veu0w4dTc/9wlWNf2jeRInNodKlcdLgemvPsrNpfu5Pq39sgfFjvIIgTsvUHCoLBnMhPoUA+tFxsXjU6VexVRQ==
Expand Down