UNPKG

@kushki/ng-suka

Version:

<p align="center"> <h1 align="center">Suka Components Angular</h1> <p align="center"> An Angular implementation of the Suka Design System </p> </p>

36 lines (35 loc) 1.4 kB
import { CdkFooterRow, CdkFooterRowDef, CdkHeaderRow, CdkHeaderRowDef, CdkRow, CdkRowDef } from '@angular/cdk/table'; /** * Header row definition for the suka-table. * Captures the header row's template and other header properties such as the columns to display. */ export declare class SukaHeaderRowDef extends CdkHeaderRowDef { } /** * Footer row definition for the suka-table. * Captures the footer row's template and other footer properties such as the columns to display. */ export declare class SukaFooterRowDef extends CdkFooterRowDef { } /** * Data row definition for the suka-table. * Captures the data row's template and other properties such as the columns to display and * a when predicate that describes when this row should be used. */ export declare class SukaRowDef<T> extends CdkRowDef<T> { } /** Footer template container that contains the cell outlet. Adds the right class and role. */ export declare class SukaHeaderRow extends CdkHeaderRow { baseClass: boolean; role: string; } /** Footer template container that contains the cell outlet. Adds the right class and role. */ export declare class SukaFooterRow extends CdkFooterRow { baseClass: boolean; role: string; } /** Data row template container that contains the cell outlet. Adds the right class and role. */ export declare class SukaRow extends CdkRow { baseClass: boolean; role: string; }