dfx-bootstrap-table
Version:
Angular table CDK implementation for Bootstrap with filtering, sorting and pagination.
24 lines (23 loc) • 1.08 kB
TypeScript
/**
* @license
* Original work Copyright Google LLC All Rights Reserved.
* Modified work Copyright DatePoll-Systems
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { CdkTextColumn } from '@angular/cdk/table';
import * as i0 from "@angular/core";
/**
* Column that simply shows text content for the header and row cells. Assumes that the table
* is using the native table implementation (`<table>`).
*
* By default, the name of this column will be the header text and data property accessor.
* The header text can be overridden with the `headerText` input. Cell values can be overridden with
* the `dataAccessor` input. Change the text justification to the start or end using the `justify`
* input.
*/
export declare class NgbTextColumn<T> extends CdkTextColumn<T> {
static ɵfac: i0.ɵɵFactoryDeclaration<NgbTextColumn<any>, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<NgbTextColumn<any>, "ngb-text-column", never, {}, {}, never, never, true, never>;
}