Skip to content

Commit d177d6f

Browse files
chore: update changelog with v7 changes (#13672)
1 parent df9ec74 commit d177d6f

File tree

3 files changed

+193
-90
lines changed

3 files changed

+193
-90
lines changed

CHANGELOG.md

Lines changed: 100 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,101 @@
1+
<a name="7.0.0"></a>
2+
# 7.0.0 amethyst ammonite (2018-10-17)
3+
4+
### Highlights
5+
6+
* Support for [Drag and Drop](https://material.angular.io/cdk/drag-drop/overview) in `@angular/cdk/drag-drop`.
7+
* Support for [Virtual Scrolling](https://material.angular.io/cdk/scrolling/overview) in `@angular/cdk/scrolling`.
8+
* Support for native `<select>` element in `<mat-form-field>` .
9+
* Added `<mat-action-list>`, a list where each item is a `<button>`.
10+
* Updated component styles throughout the library matching the 2018 Material Design Spec refresh.
11+
* Added more schematics, with schematics now available for table, drag and drop, tree, address form and more.
12+
* Added CLI prompts when using `ng add` to assist in setting up HammerJS support, application theming and animations.
13+
* 250+ bug/performance fixes
14+
15+
16+
### Upgrading to 7.0
17+
18+
Using the Angular CLI, you can use the `ng update` command to automatically migrate to the new APIs in for Material and CDK.
19+
```
20+
ng update @angular/material
21+
```
22+
23+
**NOTE:** If you are **using only the CDK** you can automatically migrate using `ng update @angular/cdk` instead.
24+
25+
26+
### Breaking Changes
27+
28+
* **ripple:** deprecated `[matRippleSpeedFactor]` and `baseSpeedFactor` for the ripples have been removed. Use the new animation config instead.
29+
* **overlay:** The `flexibleDiemsions` property on `CdkConnectedOverlay` has been renamed to `flexibleDimensions`
30+
* **sidenav:** the constructor signature of the `MatDrawerContent` and `MatSidenavContent` has changed.
31+
* **elevation:** Because `mat-elevation` usages have been moved out of component stylesheets, users who have
32+
not invoked a theme mixin will not see any elevation shadows on Material components.
33+
However, users that have created a custom theme which lacks the `elevation` property will
34+
still see the default black shadows.
35+
36+
Additionally, users who want to use themed elevations in their custom components can create
37+
their own shorthand mixin:
38+
39+
```sass
40+
@import '~@angular/material/theming';
41+
42+
$myTheme: ...
43+
44+
@mixin my-elevation($zValue) {
45+
@include mat-theme-elevation($zValue, $myTheme);
46+
}
47+
48+
```
49+
50+
and then invoke `angular-material-theme` with the `$myTheme` variable.
51+
52+
53+
54+
### Marked for Deprecation
55+
A number of items throughout the library have been deprecated and are expected to be removed in v8.
56+
#### CDK
57+
Collections
58+
- `SelectionModel.onChange` has been deprecated, use `SelectionModel.changed` instead.
59+
60+
Scrolling
61+
- `ScrollDispatchModule` has been deprecated, use `ScrollingModule` instead.
62+
63+
Table
64+
- `CdkTable.setFooterRowDef` has been deprecated, use `CdkTable.addFooterRowDef` and `CdkTable.removeFooterRowDef` instead.
65+
- `CdkTable.setHeaderRowDef` has been deprecated, use `CdkTable.addHeaderRowDef` and `CdkTable.removeHeaderRowDef` instead.
66+
67+
#### Material
68+
Dialog
69+
- `matDialogAnimations.slideDialog` has been deprecated, use `matDialogAnimations.dialogContainer` instead.
70+
- `MatDialogRef.afterOpen` has been deprecated, use `MatDialogRef.afterOpened` instead.
71+
- `MatDialogRef.afterClose` has been deprecated, use `MatDialogRef.afterClosed` instead.
72+
- `MatDialog.afterOpen` has been deprecated, use `MatDialog.afterOpened` instead.
73+
74+
Form Field
75+
- `<mat-placeholder>` has been deprecated, use `<mat-label>` instead.
76+
- `MatPlaceholder` has been deprecated, use `MatLabel` instead.
77+
78+
Paginator
79+
- `$mat-paginator-selector-trigger-min-width` has been deprecated, use `$mat-paginator-selector-trigger-width` instead.
80+
81+
Select
82+
- `matSelectAnimations.fadeInContent` has been deprecated and will be removed without replacement.
83+
- The setter method for `MatSelect.focused` has been deprecated, `MatSelect.focused` will become readonly.
84+
85+
Toolbar
86+
- `$mat-toolbar-height-mobile-portrait` has been deprecated and will be removed without replacement.
87+
- `$mat-toolbar-height-mobile-landscape` has been deprecated and will be removed without replacement.
88+
89+
**NOTE:** In addition to the specific deprecations listed above, many component constructor methods contain
90+
optional parameters which are expected to become required in v8.
91+
92+
93+
### Bug Fixes
94+
95+
* **icon:** not taking current path after initialization ([#13641](https://github.com/angular/material2/issues/13641)) ([df9ec7](https://github.com/angular/material2/commit/df9ec7))
96+
* **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))
97+
98+
199
<a name="7.0.0-rc.2"></a>
2100
# 7.0.0-rc.2 (2018-10-15)
3101

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

182-
```
183-
@import '~angular/material/theming';
280+
```sass
281+
@import '~@angular/material/theming';
184282

185283
$myTheme: ...
186284

package.json

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@
2626
"gulp": "gulp",
2727
"stage-release": "bash ./tools/release/stage-release-bin.sh"
2828
},
29-
"version": "7.0.0-rc.2",
30-
"requiredAngularVersion": ">=7.0.0-rc.0",
29+
"version": "7.0.0",
30+
"requiredAngularVersion": ">=7.0.0",
3131
"dependencies": {
32-
"@angular/animations": "7.0.0-rc.0",
33-
"@angular/common": "7.0.0-rc.0",
34-
"@angular/compiler": "7.0.0-rc.0",
35-
"@angular/core": "7.0.0-rc.0",
36-
"@angular/elements": "7.0.0-rc.0",
37-
"@angular/forms": "7.0.0-rc.0",
38-
"@angular/platform-browser": "7.0.0-rc.0",
32+
"@angular/animations": "^7.0.0",
33+
"@angular/common": "^7.0.0",
34+
"@angular/compiler": "^7.0.0",
35+
"@angular/core": "^7.0.0",
36+
"@angular/elements": "^7.0.0",
37+
"@angular/forms": "^7.0.0",
38+
"@angular/platform-browser": "^7.0.0",
3939
"@webcomponents/custom-elements": "^1.1.0",
4040
"core-js": "^2.4.1",
4141
"rxjs": "^6.3.3",
@@ -45,21 +45,21 @@
4545
"zone.js": "^0.8.26"
4646
},
4747
"devDependencies": {
48-
"@angular-devkit/core": "7.0.0-rc.1",
49-
"@angular-devkit/schematics": "7.0.0-rc.1",
50-
"@angular/compiler-cli": "7.0.0-rc.0",
51-
"@angular/http": "7.0.0-rc.0",
52-
"@angular/platform-browser-dynamic": "7.0.0-rc.0",
53-
"@angular/platform-server": "7.0.0-rc.0",
54-
"@angular/router": "7.0.0-rc.0",
55-
"@angular/upgrade": "7.0.0-rc.0",
48+
"@angular-devkit/core": "^7.0.1",
49+
"@angular-devkit/schematics": "^7.0.1",
50+
"@angular/compiler-cli": "^7.0.0",
51+
"@angular/http": "^7.0.0",
52+
"@angular/platform-browser-dynamic": "^7.0.0",
53+
"@angular/platform-server": "^7.0.0",
54+
"@angular/router": "^7.0.0",
55+
"@angular/upgrade": "^7.0.0",
5656
"@bazel/ibazel": "0.3.1",
5757
"@bazel/karma": "0.20.2",
5858
"@bazel/typescript": "0.20.2",
5959
"@firebase/app-types": "^0.3.2",
6060
"@google-cloud/storage": "^1.1.1",
6161
"@octokit/rest": "^15.9.4",
62-
"@schematics/angular": "7.0.0-rc.1",
62+
"@schematics/angular": "^7.0.1",
6363
"@types/chalk": "^0.4.31",
6464
"@types/fs-extra": "^4.0.3",
6565
"@types/glob": "^5.0.33",

yarn.lock

Lines changed: 75 additions & 70 deletions
Original file line numberDiff line numberDiff line change
@@ -2,43 +2,43 @@
22
# yarn lockfile v1
33

44

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

607607
"@sindresorhus/is@^0.7.0":
608608
version "0.7.0"
@@ -6796,7 +6796,7 @@ karma@^3.0.0:
67966796
tmp "0.0.33"
67976797
useragent "2.2.1"
67986798

6799-
"karma@github:alexeagle/karma#fa1a84ac881485b5657cb669e9b4e5da77b79f0a":
6799+
karma@alexeagle/karma#fa1a84ac881485b5657cb669e9b4e5da77b79f0a:
68006800
version "1.7.1"
68016801
resolved "https://codeload.github.com/alexeagle/karma/tar.gz/fa1a84ac881485b5657cb669e9b4e5da77b79f0a"
68026802
dependencies:
@@ -11609,7 +11609,12 @@ typedarray@^0.0.6:
1160911609
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
1161011610
integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
1161111611

11612-
[email protected], typescript@^3.1.1:
11612+
11613+
version "3.1.3"
11614+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.1.3.tgz#01b70247a6d3c2467f70c45795ef5ea18ce191d5"
11615+
integrity sha512-+81MUSyX+BaSo+u2RbozuQk/UWx6hfG0a5gHu4ANEM4sU96XbuIyAB+rWBW1u70c6a5QuZfuYICn3s2UjuHUpA==
11616+
11617+
typescript@^3.1.1:
1161311618
version "3.1.1"
1161411619
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.1.1.tgz#3362ba9dd1e482ebb2355b02dfe8bcd19a2c7c96"
1161511620
integrity sha512-Veu0w4dTc/9wlWNf2jeRInNodKlcdLgemvPsrNpfu5Pq39sgfFjvIIgTsvUHCoLBnMhPoUA+tFxsXjU6VexVRQ==

0 commit comments

Comments
 (0)