Skip to content

Releases: l-lin/angular-datatables

v4.4.1

28 Oct 10:22
Compare
Choose a tag to compare

This release contains the fix for memory leaks #1118.

v4.4.0

24 Sep 10:11
Compare
Choose a tag to compare

This release contains the fix #1097.
The rest is to be compatible with latest version of Angular.

v4.2.0

06 Aug 15:13
Compare
Choose a tag to compare

This release contains the following:

  • Support Angular 4.3.X
  • Unsubscribe dtTrigger onDestroy
  • Add exampe on select extension

v4.1.1

10 Jun 21:19
Compare
Choose a tag to compare

This release contains the following:

  • Fix for jQuery dep to stop having conflicts and having double jQuery imports #1030

v4.1.0

14 May 14:30
Compare
Choose a tag to compare

This release is mainly used to be compatible with Angular 4.1.X and angular-cli 1.0.3.

v4.0.0

22 Apr 14:36
Compare
Choose a tag to compare

New release of angular-datatables! 😺

It should not have any breaking change. Everything should work like in the version 2.

v2.3.0

02 Apr 15:39
Compare
Choose a tag to compare

This release contains the following:

  • Implements the angular-way #955
  • Use @types #954
    • You will need to install the following dev dependencies:
npm install @types/jquery --save-dev
npm install @types/datatables.net --save-dev
  • For dtOptions, you can use the DataTable's settings typings:
import { Component, OnInit } from '@angular/core';

@Component({
  selector: 'with-options',
  templateUrl: 'with-options.component.html'
})
export class WithOptionsComponent implements OnInit {
  dtOptions: DataTables.Settings = {};

  ngOnInit(): void {
    this.dtOptions = {
      pagingType: 'full_numbers'
    };
  }
}

v0.6.2

02 Apr 15:36
Compare
Choose a tag to compare

This release contains the following:

  • add .npmignore #994

v2.2.0

05 Mar 13:31
Compare
Choose a tag to compare

This release contains the following:

  • Support angular-cli#1.0.0-rc.1 #984
  • Add codelyzer for better linting #983
  • Add example to load DT options with promise #980
  • Add bundles #972

v0.6.1

05 Mar 13:23
Compare
Choose a tag to compare

This release contains the following:

  • Fix documentation #953
  • Add missing dependency datatables.net-dt in bower for releases >=0.5.5; #964