Skip to content

Releases: mike-north/ember-cli-materialize

Button bug fixes

17 Aug 20:01
Compare
Choose a tag to compare

Ember 2.0, sans deprecations

17 Aug 03:46
Compare
Choose a tag to compare

Full Changelog

Closed issues:

  • Deprecation warnings #176

Merged pull requests:

JSCS, test coverage reporting, etc...

15 Aug 23:26
Compare
Choose a tag to compare

v0.17.3

31 Jul 05:35
Compare
Choose a tag to compare
Update package.json

Dropdown button

14 Jul 03:53
Compare
Choose a tag to compare

Full Changelog

Closed issues:

  • Error on new project: unbound variable $mdi-list-icons #171

Merged pull requests:

Blueprint fix

12 Jul 00:38
Compare
Choose a tag to compare

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

11 Jul 22:23
Compare
Choose a tag to compare

Misc fixes, update to ember-cli v1.13

11 Jul 18:11
Compare
Choose a tag to compare

Ember-Specific Styles

05 Jul 04:13
Compare
Choose a tag to compare

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

03 Jul 23:43
Compare
Choose a tag to compare

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'
    },
    ...
  };
}