Skip to content

Releases: mseemann/angular2-mdl

angular 8.0

16 Jun 12:14
Compare
Choose a tag to compare
v8.0.0

fix codeclimate folders

Version 2.4.3

18 Nov 09:06
Compare
Choose a tag to compare

Bug Fixes

  • 216 (AOT fails because of private members)

Version 2.4.2

17 Nov 18:14
Compare
Choose a tag to compare

Bug Fixes

  • 200 (close menu if another menu will be opened)
  • 205 (group nested radios not working)
  • 216 (AOT fail for dialogs)

Features

  • 201 (Step in text fields)

Version 2.4.0

08 Nov 15:42
Compare
Choose a tag to compare

Features

  • 186 (dialog animations (duration and curve) should be configurable)

Version 2.3.0

29 Oct 08:40
Compare
Choose a tag to compare

Bug Fixes

  • 169 (fix docu for snackbar and remove viewRef param from snackbar api)

    Features

  • 143 (Dialog that starts animating from a specific element)

Version 2.0.0

10 Oct 18:01
Compare
Choose a tag to compare

2016-10-10

Features

  • 127 (Autocomplete on inputs)
  • 109 (AOT is now supported - e.g. the metadata files are generated)
  • 121 (avoid editing the copied scss source from mdl)
  • 118 (Add animation to mdl-dialogs)
  • 113 (Disabled tabs)
  • 112 (ViewEncapsulation.None for all components)
  • 111 (forRoot module)
  • 131 (Dialog design)
  • 139 (change return types from Promise to Observable)

Breaking Changes

  • The distribution structure has change:
    • The scss folder is now located at scss and no longer in src/scss.
    • The package is now distributed as umd bundle and esm. The bundle file is bundle/angular2-mdl.js. The esm entry point is components/index.js
  • The module MdlModule now works as a root module and makes sure that all providers are loaded into the root injector of the app. You can use MdlNonRootModule. But you should be aware that the providers are possibly not singletons. You also can use MdlNonRootModule.forRoot. This is the same as MdlModule.
  • MdlDialogService and MdlSnackbarService have changed:
    • There is no longer a setDefaultViewContainerRef method. There are two ways to specify a ViewContainerRef where dynamic Components will be attached:
    • The possibility to set a ViewContainerRef for each dialog or snackbar has been removed.
    • alert and confirm , showDialog* return an Observable and no longer a Promise (the enum ConfirmResult has been removed)
  • This version now supports AOT - but you should be aware that AOT seems not to be ready for production. AOT behaves in many cases different then JIT. (see angular/angular#11606)
  • The MdlSnachbarService returns now an Observable and no longer a Promise. Just change from then to subscribe.

Version 1.8.1

28 Sep 07:43
Compare
Choose a tag to compare

Features

  • #114 (mouseover event on tab (layout))

Version 1.8

27 Sep 14:31
Compare
Choose a tag to compare

Bug Fixes

  • #104 (Reactive Forms Disabled not handled)

Features

  • #90 (add semver carret to the 2.0.0 angular deps)
  • #94 (make angular (core, common, forms) peerDependencies)
  • #44 (Add MDL Dialog)
    See the docu for mor information how to use the MdlDialogService
  • #99 (Missing min/max on textfield)