Skip to content

Commit a8d3e26

Browse files
committed
release: 10.1.1
1 parent 345e976 commit a8d3e26

17 files changed

+100
-232
lines changed

docs/changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## 10.1.1
4+
- Bug: Detail Row Broken
5+
36
## 10.1.0
47
- Feature: Row Hover Event
58
- Bug: Columns are no longer mutated!

package.json

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

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

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,13 @@ export declare class DataTableBodyComponent implements OnInit, OnDestroy {
2121
rowClass: any;
2222
groupedRows: any;
2323
groupExpansionDefault: boolean;
24-
_groupRowsBy: string;
25-
_innerWidth: number;
24+
innerWidth: number;
2625
groupRowsBy: string;
2726
pageSize: number;
2827
rows: any[];
2928
columns: any[];
3029
offset: number;
3130
rowCount: number;
32-
innerWidth: number;
3331
readonly bodyWidth: string;
3432
bodyHeight: any;
3533
scroll: EventEmitter<any>;
@@ -52,16 +50,15 @@ export declare class DataTableBodyComponent implements OnInit, OnDestroy {
5250
* calculate scroll height automatically (as height will be undefined).
5351
*/
5452
readonly scrollHeight: number;
55-
temp: any[];
5653
rowHeightsCache: RowHeightCache;
57-
_temp: any[];
54+
temp: any[];
5855
offsetY: number;
5956
indexes: any;
6057
columnGroupWidths: any;
6158
columnGroupWidthsWithoutGroup: any;
6259
rowTrackingFn: any;
6360
listener: any;
64-
groupIndexes: any;
61+
rowIndexes: any;
6562
rowExpansions: any;
6663
_rows: any[];
6764
_bodyHeight: any;
@@ -167,7 +164,13 @@ export declare class DataTableBodyComponent implements OnInit, OnDestroy {
167164
* Recalculates the table
168165
*/
169166
recalcLayout(): void;
167+
/**
168+
* Tracks the column
169+
*/
170170
columnTrackingFn(index: number, column: any): any;
171+
/**
172+
* Gets the row pinning group styles
173+
*/
171174
stylesByGroup(group: string): {
172175
width: string;
173176
};
@@ -176,7 +179,7 @@ export declare class DataTableBodyComponent implements OnInit, OnDestroy {
176179
*/
177180
getRowExpanded(row: any): boolean;
178181
/**
179-
* Gets the row index of the item
182+
* Gets the row index given a row
180183
*/
181184
getRowIndex(row: any): number;
182185
}

release/components/body/body.component.js

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

0 commit comments

Comments
 (0)