Skip to content
This repository has been archived by the owner on Nov 6, 2024. It is now read-only.

Releases: sherweb/ngx-materialize

v6.1.3

13 Aug 01:39
Compare
Choose a tag to compare

Bug fixes

v6.1.1

09 Aug 14:07
Compare
Choose a tag to compare

New features and enhancements

Bug fixes

v6.0.1

04 Jun 23:44
Compare
Choose a tag to compare

Bug fixes

v6.0.0

03 Jun 19:11
Compare
Choose a tag to compare

ngx-materialize v6.0.0

📦 Repository as been renamed from ng2-materialize to ngx-materialize
🆖 Angular has been updated to 6.0.0 along with RxJs 6.0.0
🚀 Version has been bumped to 6.0.0 to be aligned with Angular

Be sure to follow the README.md for installation if needed.

Breaking changes

Repository renamed

  • Need to uninstall ng2-materialize and install ngx-materialize

MzModal component

  • onClose output property has been renamed to close
  • open exposed method has been renamed to openModal
  • close exposed method has been renamed to closeModal

MzSelect directive

  • onUpdate output property has been renamed to update

Commits

v1.8.1

14 May 03:50
Compare
Choose a tag to compare

New features and enhancements

Bug fixes

v1.8.0

30 Mar 02:07
c1dd89a
Compare
Choose a tag to compare

New features and enhancements

Bug fixes

v1.7.2

28 Nov 14:22
Compare
Choose a tag to compare

New features and enhancements

Bug fixes

v1.7.1

22 Nov 04:23
Compare
Choose a tag to compare

Bug fixes

v1.7.0

24 Nov 03:27
Compare
Choose a tag to compare

New features and enhancements

Bug fixes

Breaking changes

Card component

Properties backgroundClass and textClass have been removed on mz-card component. This is breaking change for those using the grid system (classes such as col s12) directly on mz-card as it adds margin and padding to the applied element. Therefore it would now need to be wrapped into a container to apply the grid classes, the same way it should be done with pure Materialize card.

So it will now need to be used like this...

<div class="col s12">
  <mz-card class="blue-grey darken-1 white-text">
    <mz-card-content>
      Great Content Here.
    </mz-card-content>
  </mz-card>
</div>

Deprecacted

MaterializeModule

You can now import individual component module in your application. Each component module name is specified in demo pages. You can see an example below on how to use component modules:

import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
+ import { MzButtonModule, MzInputModule } from 'ng2-materialize';

import { HomeComponent } from './home.component';

@NgModule({
  imports: [
    CommonModule,
+   MzButtonModule,
+   MzInputModule,
  ],
  declarations: [ HomeComponent ],
})
export class HomeModule { }

You can still import MaterializeModule to make all component availables but it is deprecated and will be removed in a near future.

1.6.0

13 Oct 18:45
Compare
Choose a tag to compare

New components

Bug Fixes

New features and enhancements