UNPKG

1.95 kBTypeScriptView Raw
1import { CdkFooterRow, CdkFooterRowDef, CdkHeaderRow, CdkHeaderRowDef, CdkRow, CdkRowDef, CdkCellOutlet, DataRowOutlet, HeaderRowOutlet, FooterRowOutlet, NoDataRowOutlet } from '@angular/cdk/table';
2export declare class NbDataRowOutletDirective extends DataRowOutlet {
3}
4export declare class NbHeaderRowOutletDirective extends HeaderRowOutlet {
5}
6export declare class NbFooterRowOutletDirective extends FooterRowOutlet {
7}
8export declare class NbNoDataRowOutletDirective extends NoDataRowOutlet {
9}
10export declare class NbCellOutletDirective extends CdkCellOutlet {
11}
12/**
13 * Header row definition for the nb-table.
14 * Captures the header row's template and other header properties such as the columns to display.
15 */
16export declare class NbHeaderRowDefDirective extends CdkHeaderRowDef {
17 columns: Iterable<string>;
18 sticky: boolean;
19}
20/**
21 * Footer row definition for the nb-table.
22 * Captures the footer row's template and other footer properties such as the columns to display.
23 */
24export declare class NbFooterRowDefDirective extends CdkFooterRowDef {
25 columns: Iterable<string>;
26 sticky: boolean;
27}
28/**
29 * Data row definition for the nb-table.
30 * Captures the data row's template and other properties such as the columns to display and
31 * a when predicate that describes when this row should be used.
32 */
33export declare class NbRowDefDirective<T> extends CdkRowDef<T> {
34 columns: Iterable<string>;
35 when: (index: number, rowData: T) => boolean;
36}
37/** Footer template container that contains the cell outlet. Adds the right class and role. */
38export declare class NbHeaderRowComponent extends CdkHeaderRow {
39}
40/** Footer template container that contains the cell outlet. Adds the right class and role. */
41export declare class NbFooterRowComponent extends CdkFooterRow {
42}
43/** Data row template container that contains the cell outlet. Adds the right class and role. */
44export declare class NbRowComponent extends CdkRow {
45}