File tree 5 files changed +13
-12
lines changed
projects/igniteui-angular/src/lib
5 files changed +13
-12
lines changed Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ export class NoopSortingStrategy implements IGridSortingStrategy {
88
88
return this . _instance || ( this . _instance = new NoopSortingStrategy ( ) ) ;
89
89
}
90
90
91
- public sort ( data : any [ ] , expressions : ISortingExpression [ ] ) : any [ ] {
91
+ public sort ( data : any [ ] ) : any [ ] {
92
92
return data ;
93
93
}
94
94
}
Original file line number Diff line number Diff line change @@ -11,7 +11,8 @@ export class IgxSummaryDataPipe implements PipeTransform {
11
11
12
12
constructor ( private gridAPI : GridBaseAPIService < IgxGridBaseDirective & GridType > ) { }
13
13
14
- transform ( id : string , trigger : number = 0 ) {
14
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
15
+ public transform ( id : string , trigger : number = 0 ) {
15
16
const summaryService = this . gridAPI . grid . summaryService ;
16
17
return summaryService . calculateSummaries (
17
18
summaryService . rootSummaryID ,
Original file line number Diff line number Diff line change @@ -211,8 +211,8 @@ export class IgxGridSummaryService {
211
211
}
212
212
213
213
// TODO: remove only deleted rows
214
- private removeChildRowSummaries ( rowID , columnName ?) {
215
- }
214
+ // private removeChildRowSummaries(rowID, columnName?) {
215
+ // }
216
216
217
217
private compareGroupingExpressions ( current , groupingArgs ) {
218
218
const newExpressions = groupingArgs . expressions . map ( record => record . fieldName ) ;
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ export class IgxSummaryCellComponent {
40
40
}
41
41
42
42
@HostBinding ( 'attr.data-visibleIndex' )
43
- get visibleColumnIndex ( ) : number {
43
+ public get visibleColumnIndex ( ) : number {
44
44
return this . column . visibleIndex ;
45
45
}
46
46
@@ -68,19 +68,19 @@ export class IgxSummaryCellComponent {
68
68
} ;
69
69
}
70
70
71
- get width ( ) {
71
+ public get width ( ) {
72
72
return this . column . getCellWidth ( ) ;
73
73
}
74
74
75
- get nativeElement ( ) : any {
75
+ public get nativeElement ( ) : any {
76
76
return this . element . nativeElement ;
77
77
}
78
78
79
- get columnDatatype ( ) : DataType {
79
+ public get columnDatatype ( ) : DataType {
80
80
return this . column . dataType ;
81
81
}
82
82
83
- get itemHeight ( ) {
83
+ public get itemHeight ( ) {
84
84
return this . column . grid . defaultSummaryHeight ;
85
85
}
86
86
Original file line number Diff line number Diff line change @@ -42,11 +42,11 @@ export class IgxSummaryRowComponent implements DoCheck {
42
42
public firstCellIndentation = - 1 ;
43
43
44
44
@HostBinding ( 'attr.data-rowIndex' )
45
- get dataRowIndex ( ) {
45
+ public get dataRowIndex ( ) {
46
46
return this . index ;
47
47
}
48
48
49
- get minHeight ( ) {
49
+ public get minHeight ( ) {
50
50
return this . grid . summaryService . calcMaxSummaryHeight ( ) - 1 ;
51
51
}
52
52
@@ -117,7 +117,7 @@ export class IgxSummaryRowComponent implements DoCheck {
117
117
return this . grid . unpinnedColumns ;
118
118
}
119
119
120
- getContext ( row ) {
120
+ public getContext ( row ) {
121
121
return {
122
122
$implicit : row
123
123
} ;
You can’t perform that action at this time.
0 commit comments