angular-material
Advanced tools
Changelog
0.11.1 (2015-09-25)
This release resolves many issues and include the following notable changes:
.layout-<xxx>-row
and .layout-<xxx>-column
layoutsDevelopers are requested to always test with the latest versions. And any CodePens provided in issue reports should use:
$digest already in progress
error (4a16038b, closes #4743)<a name"0.11.0-rc2"></a>
Changelog
0.11.0 (2015-09-08)
This release includes all changes from RC1 and RC2.
<a name"0.11.0-rc2"></a>
Changelog
0.10.1 (2015-08-11)
md-selected
to -1
will allow md-tabs
to function without forcing a (27783df9, closes #3172)min-height
for textarea to one row
(and remove extra padding space); set rows=1
since it defaults to 2(2132cd29)
sm
, lg
, and md
have
modified max-width
values(51dbd402)
md-button
class now uses display: inline-block
instead of display: flex
; removes associated flexbox
styles(fd331c87)
transition-in
and
transition-out
to md-transition-in
and md-transition-out
(4210ade7)
md-select-label
has been removed. Users must use
md-input-container
and label
going forward.(712bc721)
preventDefault
calls to keydown event (d52e9c29)$event.stopPropagation()
to (2781eac5, closes #2931)position: fixed
to .md-dialog-container
(01859080)md-swipe-content
support (0982c76a, closes #3225)md-center-tabs
should work now (aa1e47d3)md-tab-canvas
(46ffa9eb, closes #3577)md-stretch-tabs
with one-way binding (cd3e8a1c, closes #3547)md-center-tabs
support with recent changes (4867e318, closes #3549)md-selected
is added (f5cd5a07, closes #3537)<a name"0.10.0"></a>
Changelog
0.10.0 (2015-06-15)
md-icon
- iconSize
has been
changed to viewBoxSize
(f93e117a)
md-buttons
using a
and button
under th (cc07e63d, closes #2440)md-dynamic-height
(60197180, closes #3184)<a name="0.9.8"></a>
Changelog
0.9.7 (2015-06-01)
name
attribute has been changed to input-name
to more clearly show its purposeclear
button (73e03a70, closes #2193, #2578)<a name="0.9.6"></a>
Changelog
0.9.5 (2015-05-28)
Removed attach(button|tab|checkbox|list)Behavior in favor of composing an injectable ripple service specific to your target. $mdInkRipple was too aware of how to configure components. You now have access to $mdButtonInkRipple, $mdTabInkRipple, $mdListInkRipple, $mdCheckboxInkRipple.
Change your code from this:
function MyService($mdInkRipple) {
//... Included for brevity
$mdInkRipple.attachButtonBehavior(scope, element, options);
}
To this:
function MyService($mdButtonInkRipple) {
//... Included for brevity
$mdButtonInkRipple.attach(scope, element, options);
}
icons: Default size for md-icon
has been changed from 28px
to 24px
tabs: Replaces pagination transition with transform
rather than left
for performance
(3b0f12e3)
<a name="0.9.4"></a>
Changelog
0.9.4 (2015-05-15)
This interim release fixes an incorrect deployment of angular-material.js
; which added the Closure Library Namespace features using goog.provide()
. Only source in /modules/closure/**.js
should use this namespacing.
<a name="0.9.3"></a>
Changelog
0.9.3 (2015-05-14)
This release is also using enhanced scripting to automate the build and release processes. Releases will now also deploy versioned docs to http://github.com/angular/code.material.angularjs.org.
not found
message from displaying while results are loading (3d5bd948)<a name="0.9.0"></a>