You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+13-1Lines changed: 13 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -4,9 +4,9 @@
4
4
5
5
### Bug Fixes
6
6
7
-
***build:** omit module ids from component metadata. ([#984](https://github.com/angular/material2/issues/984)) ([7f594ce](https://github.com/angular/material2/commit/7f594ce))
8
7
***button:** hover styles no longer applied to disabled buttons ([#909](https://github.com/angular/material2/issues/909)) ([21e419d](https://github.com/angular/material2/commit/21e419d)), closes [#866](https://github.com/angular/material2/issues/866)
9
8
***button:** stop using `Type` from [@angular](https://github.com/angular) ([#991](https://github.com/angular/material2/issues/991)) ([97d3ed3](https://github.com/angular/material2/commit/97d3ed3))
9
+
***button-toggle:** toggle group should not emit an initial change event. ([#1144](https://github.com/angular/material2/issues/1144)) ([e5830d1](https://github.com/angular/material2/commit/e5830d1))
10
10
***card:** remove unnecessary intermediate div ([#1068](https://github.com/angular/material2/issues/1068)) ([b5e1e33](https://github.com/angular/material2/commit/b5e1e33))
***input:** make attributes match native ones ([#1066](https://github.com/angular/material2/issues/1066)) ([f3a7b91](https://github.com/angular/material2/commit/f3a7b91)), closes [#1065](https://github.com/angular/material2/issues/1065)
@@ -27,6 +27,18 @@
27
27
28
28
### BREAKING CHANGES
29
29
30
+
* all: we've updated our packaging to match angular/angular's packaging. If you're using System.js in your project, you will probably want to
31
+
switch to using our UMD bundles. Example config:
32
+
33
+
```ts
34
+
'@angular2-material/core': {
35
+
format: 'cjs',
36
+
main: 'core.umd.js'
37
+
}
38
+
```
39
+
40
+
You can see a more detailed example in our demo app's system config [here](https://github.com/angular/material2/blob/master/src/demo-app/system-config.ts).
41
+
30
42
* input: `md-input` attributes now match the casing of native attributes. Previously they were camel-cased; now they are all lowercase.
31
43
Example: `autoComplete` is now `autocomplete`. See [#1066](https://github.com/angular/material2/pull/1066) for a full list.
32
44
* overlay: overlays are now synchronous. This means actions like creating an overlay no longer return a promise.
0 commit comments