Releases: mike-north/ember-cli-materialize
Releases · mike-north/ember-cli-materialize
Button bug fixes
v0.18.1
Ember 2.0, sans deprecations
Closed issues:
- Deprecation warnings #176
Merged pull requests:
- Autofocus Support on input field #208 (cmanou)
- Kill deprecations #207 (mike-north)
- Use v0.4.0 of ember-key-responder #191 (mike-north)
JSCS, test coverage reporting, etc...
v0.17.4 New release
v0.17.3
Update package.json
Dropdown button
Blueprint fix
A new dependency has been introduced, and this needed to be added to the blueprint, so that consuming apps had the dependency installed automatically
Squash bind-attr deprecations, Colors documentation
Misc fixes, update to ember-cli v1.13
Ember-Specific Styles
This library now has additional styles that must be imported into consuming apps separately from materialize.
For example:
/app/styles/app.scss
@import 'materialize';
@import 'ember-cli-materialize';
Configurable Defaults
Default values for this library can now be configured via config/environment.js
module.exports = function(/* environment, appConfig */) {
var ENV = {
materializeDefaults: {
modalIsFooterFixed: false,
buttonIconPosition: 'left',
loaderSize: 'big',
loaderMode: 'indeterminate',
modalContainerId: 'materialize-modal-root-element'
},
...
};
}