File tree Expand file tree Collapse file tree 4 files changed +15
-9
lines changed
projects/igniteui-angular/src/lib
core/styles/components/grid Expand file tree Collapse file tree 4 files changed +15
-9
lines changed Original file line number Diff line number Diff line change 577
577
@extend %igx-grid__tr-pivot-group !optional
578
578
}
579
579
580
- @include e (tr-pivot , $m : ' columnLeaf ' ) {
581
- @extend %igx-grid__tr-pivot--columnLeaf !optional
580
+ @include e (tr-pivot , $m : ' columnDimensionLeaf ' ) {
581
+ @extend %igx-grid__tr-pivot--columnDimensionLeaf !optional
582
582
}
583
583
584
584
@include e (tr-pivot , $m : ' columnMultiRowSpan' ) {
Original file line number Diff line number Diff line change 2978
2978
display : inline-flex !important ;
2979
2979
}
2980
2980
2981
- %igx-grid__tr-pivot--columnLeaf {
2982
- box-shadow : none !important ;
2981
+ %igx-grid__tr-pivot--columnDimensionLeaf {
2982
+ box-shadow : none ;
2983
+ igx-grid-header {
2984
+ border : none ;
2985
+ }
2983
2986
}
2984
2987
%igx-grid__tr-pivot--columnMultiRowSpan {
2985
2988
igx-grid-header {
Original file line number Diff line number Diff line change @@ -984,6 +984,13 @@ export class IgxPivotGridComponent extends IgxGridBaseDirective implements OnIni
984
984
super . setupColumns ( ) ;
985
985
}
986
986
987
+ /**
988
+ * @hidden
989
+ */
990
+ public get hasMultipleValues ( ) {
991
+ return this . values . length > 1 ;
992
+ }
993
+
987
994
protected resolveToggle ( groupColumn : IgxColumnComponent , state : boolean ) {
988
995
groupColumn . hidden = state ;
989
996
this . columnGroupStates . set ( groupColumn . field , state ) ;
@@ -1026,10 +1033,6 @@ export class IgxPivotGridComponent extends IgxGridBaseDirective implements OnIni
1026
1033
return dvl < this . _defaultTargetRecordNumber ? 0 : this . defaultTargetBodyHeight ;
1027
1034
}
1028
1035
1029
- protected get hasMultipleValues ( ) {
1030
- return this . values . length > 1 ;
1031
- }
1032
-
1033
1036
protected horizontalScrollHandler ( event ) {
1034
1037
const scrollLeft = event . target . scrollLeft ;
1035
1038
this . theadRow . headerContainers . forEach ( headerForOf => {
Original file line number Diff line number Diff line change 173
173
[ngStyle] ="column.headerGroupStyles |igxHeaderGroupStyle:column:grid.pipeTrigger " [column] ="column "
174
174
[style.min-width] ="column.calcWidth | igxHeaderGroupWidth:grid.defaultHeaderGroupMinWidth:hasMRL "
175
175
[style.flex-basis] ="column.calcWidth | igxHeaderGroupWidth:grid.defaultHeaderGroupMinWidth:hasMRL "
176
- [class.igx-grid__tr-pivot--columnLeaf ] = 'isDuplicateOfExistingParent(column, i) '
176
+ [class.igx-grid__tr-pivot--columnDimensionLeaf ] = 'isDuplicateOfExistingParent(column, i) '
177
177
[class.igx-grid__tr-pivot--columnMultiRowSpan] = 'isMultiRow(column, i) '
178
178
>
179
179
</ igx-grid-header-group >
You can’t perform that action at this time.
0 commit comments