UNPKG

igniteui-angular-sovn

Version:

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

18 lines (16 loc) 565 B
import { Component } from '@angular/core'; import { BaseFilteringComponent } from './base-filtering.component'; import { IgxIconComponent } from '../../../icon/icon.component'; import { NgIf } from '@angular/common'; /** * A component used for presenting Excel style column hiding UI. */ @Component({ selector: 'igx-excel-style-hiding', templateUrl: './excel-style-hiding.component.html', standalone: true, imports: [NgIf, IgxIconComponent] }) export class IgxExcelStyleHidingComponent { constructor(public esf: BaseFilteringComponent) { } }