Skip to content

Releases: tinesoft/ngx-wow

v2.0.1

10 Feb 09:09
Compare
Choose a tag to compare

Bug Fixes

  • typings: change typing for scrollContainer (now string instead of HTMLElement) (00c57f7)

v2.0.0

09 Oct 18:13
Compare
Choose a tag to compare

Bug Fixes

  • core: item reveal events not fired if initialising WowService with no arguments (ec56d5e), closes #19

Features

  • core: update to Angular v6.x.x and higher (ccdab37)

BREAKING CHANGES

  • core: forRoot() on NgwWowModule has been removed as no longer necessary

Before:

import {NgwWowModule} from 'ngx-wow';

@NgModule({
  declarations: [AppComponent, ...],
  imports: [NgwWowModule.forRoot()],
  bootstrap: [AppComponent]
})
export class AppModule {
}

After:

import {NgwWowModule} from 'ngx-wow';

@NgModule({
  declarations: [AppComponent, ...],
  imports: [NgwWowModule],
  bootstrap: [AppComponent]
})
export class AppModule {
}

v1.0.2

31 Dec 07:58
Compare
Choose a tag to compare

Bug Fixes

  • animate.css: update documentation about the necessary setup of animate.css (e0ed09d)

v1.0.1

21 Dec 21:40
Compare
Choose a tag to compare

Bug Fixes

  • doc: update README with installation instructions (e5acacc)

v1.0.0

18 Oct 16:33
Compare
Choose a tag to compare

Features