• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

IgniteUI / igniteui-angular / 13331632524

14 Feb 2025 02:51PM CUT coverage: 22.015% (-69.6%) from 91.622%
13331632524

Pull #15372

github

web-flow
Merge d52d57714 into bcb78ae0a
Pull Request #15372: chore(*): test ci passing

1990 of 15592 branches covered (12.76%)

431 of 964 new or added lines in 18 files covered. (44.71%)

19956 existing lines in 307 files now uncovered.

6452 of 29307 relevant lines covered (22.02%)

249.17 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

10.0
/projects/igniteui-angular/src/lib/grids/resizing/pivot-grid/pivot-resize-handle.directive.ts
1
import {
2
    Directive,
3
    ElementRef,
4
    Input,
5
    NgZone
6
} from '@angular/core';
7
import { ColumnType } from '../../common/grid.interface';
8
import { PivotRowHeaderGroupType } from '../../pivot-grid/pivot-grid.interface';
9
import { IgxPivotColumnResizingService } from './pivot-resizing.service'
10
import { IgxResizeHandleDirective } from '../resize-handle.directive';
11

12
/**
13
 * @hidden
14
 * @internal
15
 */
16
@Directive({
17
    selector: '[igxPivotResizeHandle]',
18
    standalone: true
19
})
20
export class IgxPivotResizeHandleDirective extends IgxResizeHandleDirective {
2✔
21

22
    /**
23
     * @hidden
24
     */
25
    @Input('igxPivotResizeHandle')
26
    public set pivotColumn(value: ColumnType) {
UNCOV
27
        this.column = value;
×
28
    }
29

30
    public get pivotColumn() {
31
        return this.column;
×
32
    }
33

34
    /**
35
     * @hidden
36
     */
37
    @Input('igxPivotResizeHandleHeader')
38
    public rowHeaderGroup: PivotRowHeaderGroupType;
39

40
    constructor(zone: NgZone,
41
        element: ElementRef,
UNCOV
42
        public override colResizingService: IgxPivotColumnResizingService) {
×
UNCOV
43
        super(zone, element, colResizingService);
×
44
    }
45

46
    /**
47
     * @hidden
48
     */
49
    public override onDoubleClick() {
UNCOV
50
        this._dblClick = true;
×
UNCOV
51
        this.initResizeService();
×
UNCOV
52
        this.rowHeaderGroup.grid.autoSizeRowDimension(this.rowHeaderGroup.parent.rootDimension);
×
53
    }
54

55
    /**
56
     * @hidden
57
     */
58
    protected override initResizeService(event = null) {
×
UNCOV
59
        super.initResizeService(event);
×
UNCOV
60
        this.colResizingService.rowHeaderGroup = this.rowHeaderGroup;
×
61
    }
62
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc