Skip to content

Releases: aurelia-ui-toolkits/aurelia-materialize-bridge

0.14.0

29 Aug 19:14
Compare
Choose a tag to compare

0.14.0 (2016-08-29)

Bug Fixes

  • autocomplete: add export, ref #234 (cb284ce)
  • md-input: run updateService only.. (e2d7b18)
  • md-pagination: respect visible links (e218e79)
  • md-pagination: visible links update (1e06d0f)
  • scrollspy: add useScrollspy (0b402ec)
  • validationRenderer: remove unused classes (b597856)

Features

  • md-input: add md-validate-success attribute (1bb0a8e)
  • md-input: publish DOM blur event (547ddb3)
  • validationRenderer: export renderer (5643a4e)

0.13.0

15 Aug 18:42
Compare
Choose a tag to compare

0.13.0 (2016-08-15)

Bug Fixes

  • validationRenderer: correctly assign boundaryElement, set label active to avoid strange layout error (b9f768d)

Features

  • md-input: add md-step option for number input types( allows decimals and preset increments (19a6892)
  • validation: add validationRenderer from @Ullfis (5a73161)

0.12.0

10 Aug 18:38
Compare
Choose a tag to compare

0.12.0 (2016-08-10)

Features

0.11.0

03 Aug 20:26
Compare
Choose a tag to compare

0.11.0 (2016-08-03)

Bug Fixes

  • md-datepicker: Date not being parsed when using tab on control (8c869b5)
  • md-datepicker: respect max date (e54d610)
  • md-input: fix floating label styles (revert older fix) (8039847)

Features

  • md-autocomplete: add autocomplete, closes #209 (05e4260), closes #209
  • md-carousel: new "special" carousel from Materialize 0.97.7 (0bd99cd)
  • md-chips: add first attempt on chip editor (5af48a5)

0.10.4

25 Jul 09:58
Compare
Choose a tag to compare

0.10.4 (2016-07-25)

Bug Fixes

  • md-pagination: fix page links display with an odd amount of visible links, thanks to @glennpierce (b79f92a)

0.10.3

22 Jul 10:08
Compare
Choose a tag to compare

0.10.3 (2016-07-22)

Bug Fixes

  • md-pagination: fix last ... indicator (0bfd109)

0.10.2

22 Jul 09:22
Compare
Choose a tag to compare

0.10.2 (2016-07-22)

Features

  • md-pagination: add ... indicator to page links when start/end are not visible (also hijacked @g (b142fe8)

0.10.1

13 Jul 18:07
Compare
Choose a tag to compare

0.10.1 (2016-07-13)

Bug Fixes

  • md-datepicker: Erase via backspace would not update value or clear it (8e748ce)

0.10.0

06 Jul 17:44
Compare
Choose a tag to compare

0.10.0 (2016-07-06)

Features

  • webpack compatibility: This version of the bridge should be compatible with webpack (finally). Tested with skeleton-webpack beta 2.0.0

possible breaking change

For being compatible with webpack we had to remove the hard-coded dependency on Dogfalo/materialize so you can use whatever you want. The Materialize npm package is called materialize-css so import 'materialize'; would result in an error.

You will have to provide your own Materialize import now. For example put this in main.js:

import 'materialize';

or for npm/webpack:

import 'materialize-css';

Downside of this is Materialize gets initialized twice with webpack. I've raised an issue here: aurelia/skeleton-navigation#564

Upside of this is you can now use forks if you want. 😄

Bug Fixes

  • md-datepicker: fix value property not being set after pickadate parses it internally (b21ef11)
  • package.json: remove trailing comma (fcffd23)
  • webpack: add components to import via webpack (b153ea9)

0.9.0

29 Jun 18:25
Compare
Choose a tag to compare

0.9.0 (2016-06-29)

Bug Fixes

  • md-datepicker: fix closeOnSelect closing on month/year switching (ed2664d)
  • md-datepicker: fix tab index of datepicker (36b4ee4)

Features

  • md-datepicker: add advanced options and editable (9bc8e9b)
  • md-datepicker: add showIcon option and expose simple open/close functions (9608fab)