Skip to content

Releases: kryops/ng2-events

5.0.0 Angular 12, Ivy

28 May 17:12
Compare
Choose a tag to compare
  • [BREAKING] Change compilation to partial-Ivy
  • Update to Angular 12
  • Remove deprecated EventManager.addGlobalEventListener calls

For applications using Angular Ivy, but without the Angular CLI, follow the docs on consuming partial Ivy code.

4.2.2 Angular 9

06 Mar 22:17
Compare
Choose a tag to compare

Make compatible with Angular 9

4.2.1 Potential fix for up/down firing twice

15 Oct 15:43
Compare
Choose a tag to compare

Prevent up/down events from firing twice on iOS 13 and Chrome Android (#5)

4.2.0: RxJS 6 (and Angular 6 too)

05 May 13:38
Compare
Choose a tag to compare

This release adds RxJS 6 compatibility so that it doesn't require the rxjs-compat module in order to work.

Compatible with Angular 5 and 6!

4.1.0: Add "move" event

02 Jan 19:00
Compare
Choose a tag to compare

4.0.0: Angular 5

04 Nov 14:00
Compare
Choose a tag to compare

This release upgrades to Angular 5. For Angular 4, use version 3.1.0

3.1.0: Flat ESM bundles

29 Apr 09:52
Compare
Choose a tag to compare

This release adds flat ESM bundles in ES5 and ES2015 to the library

package.json main fields:

  • main: CommonJS library index (ES5)
  • jsnext:main: Flat ESM bundle (ES5)
  • module: Flat ESM bundle (ES5)
  • es2015: Flat ESM bundle (ES2015)

3.0.0: Angular 4 compatibility

26 Mar 07:43
Compare
Choose a tag to compare

This release is compatible with Angular 4. For Angular 2, use version 2.0.0

2.0.0

05 Jan 05:36
Compare
Choose a tag to compare
  • Added once event util
  • Added scroll-in / scroll-out events
  • Added condition directive to conditionally attach event handlers
  • Restructuring to eliminate dead code when only some sub-modules are used
  • Minor fixes

BREAKING

The import path for sub-modules has changed.

Before:

import {OutsideEventModule} from "ng2-events";

Now:

import {OutsideEventModule} from "ng2-events/lib/outside";