UNPKG

igniteui-angular-sovn

Version:

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

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