siemens/ngx-datatable

View on GitHub
projects/ngx-datatable/src/lib/components/body/ghost-loader/ghost-loader.component.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { ChangeDetectionStrategy, Component, Input } from '@angular/core';

@Component({
  selector: `ghost-loader`,
  templateUrl: `./ghost-loader.component.html`,
  styleUrls: [`./ghost-loader.component.scss`],
  changeDetection: ChangeDetectionStrategy.OnPush
})
export class DataTableGhostLoaderComponent {
  @Input() columns;
  @Input() pageSize;
  @Input() rowHeight;
  @Input() ghostBodyHeight;
}