UNPKG

igniteui-angular-sovn

Version:

Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps

18 lines (16 loc) 720 B
import { ChangeDetectionStrategy, Component } from '@angular/core'; import { IgxGridColumnResizerComponent } from '../resizer.component'; import { IgxPivotColumnResizingService } from './pivot-resizing.service'; import { IgxColumnResizerDirective } from '../resizer.directive'; @Component({ changeDetection: ChangeDetectionStrategy.OnPush, selector: 'igx-pivot-grid-column-resizer', templateUrl: '../resizer.component.html', standalone: true, imports: [IgxColumnResizerDirective] }) export class IgxPivotGridColumnResizerComponent extends IgxGridColumnResizerComponent { constructor(public override colResizingService: IgxPivotColumnResizingService) { super(colResizingService); } }