Skip to content

Commit

Permalink
docs(grid): Exposing igxHeader and igxCell in the API docs (#3367)
Browse files Browse the repository at this point in the history
  • Loading branch information
kdinev authored and gedinakova committed Dec 14, 2018
1 parent df55d2b commit ae21495
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions projects/igniteui-angular/src/lib/grids/grid.common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import {
ChangeDetectorRef,
Directive,
ElementRef,
HostBinding,
HostListener,
Inject,
Injectable,
Expand All @@ -23,7 +22,6 @@ import { map, switchMap, takeUntil, throttle } from 'rxjs/operators';
import { IgxColumnComponent } from './column.component';
import { IgxDragDirective, IgxDropDirective } from '../directives/dragdrop/dragdrop.directive';
import { IgxGridForOfDirective } from '../directives/for-of/for_of.directive';
import { SortingDirection } from '../data-operations/sorting-expression.interface';
import { ConnectedPositioningStrategy } from '../services';
import { getPointFromPositionsSettings, VerticalAlignment, PositionSettings } from '../services/overlay/utilities';
import { scaleInVerBottom, scaleInVerTop } from '../animations/main';
Expand Down Expand Up @@ -126,19 +124,14 @@ export class IgxColumnResizerDirective implements OnInit, OnDestroy {
}
}

/**
* @hidden
*/
@Directive({
selector: '[igxCell]'
})
export class IgxCellTemplateDirective {

constructor(public template: TemplateRef<any>) { }
}
/**
* @hidden
*/

@Directive({
selector: '[igxHeader]'
})
Expand All @@ -157,9 +150,7 @@ export class IgxCellFooterTemplateDirective {

constructor(public template: TemplateRef<any>) { }
}
/**
* @hidden
*/

@Directive({
selector: '[igxCellEditor]'
})
Expand Down

0 comments on commit ae21495

Please sign in to comment.