Skip to content

Commit 6bb6aa5

Browse files
committed
(release): 2.1.0
1 parent e703e91 commit 6bb6aa5

File tree

83 files changed

+2295
-729
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+2295
-729
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular2-data-table",
3-
"version": "2.0.0",
3+
"version": "2.1.0",
44
"description": "angular2-data-table is a Angular2 component for presenting large and complex data.",
55
"main": "release/index.js",
66
"typings": "release/index.d.ts",

release/components/body/body-cell.component.d.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
import { EventEmitter, ElementRef, Renderer } from '@angular/core';
1+
import { EventEmitter, ElementRef } from '@angular/core';
22
export declare class DataTableBodyCellComponent {
33
row: any;
44
column: any;
55
rowHeight: number;
6+
isSelected: boolean;
67
sorts: any[];
78
activate: EventEmitter<any>;
89
isFocused: boolean;
@@ -15,11 +16,12 @@ export declare class DataTableBodyCellComponent {
1516
private sortDir;
1617
private element;
1718
private _sorts;
18-
constructor(element: ElementRef, renderer: Renderer);
19+
constructor(element: ElementRef);
1920
onFocus(): void;
2021
onBlur(): void;
2122
onClick(event: MouseEvent): void;
2223
onDblClick(event: MouseEvent): void;
2324
onKeyDown(event: KeyboardEvent): void;
25+
onCheckboxChange(event: any): void;
2426
calcSortDir(sorts: any[]): any;
2527
}

release/components/body/body-cell.component.js

Lines changed: 23 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

release/components/body/body-cell.component.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)