@doku-dev/doku-fragment
Version:
A new Angular UI library that moving away from Bootstrap and built from scratch.
28 lines (27 loc) • 946 B
TypeScript
import { NgClass } from '@angular/common';
import * as i0 from "@angular/core";
export declare class DokuCardHeader {
/**
* The background of the header element.
* @default 'transparent'
*/
background: 'transparent' | 'colored';
/**
* Whether the header have a line divider at the bottom.
*
* @default false
*/
withDivider: boolean;
/**
* Whether to remove the padding bottom.
*
* Does not works when `background` is colored or `withDivider` is true.
*
* @default false
*/
dense: boolean;
protected get classes(): NgClass['ngClass'];
protected get classDense(): boolean;
static ɵfac: i0.ɵɵFactoryDeclaration<DokuCardHeader, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<DokuCardHeader, "doku-card-header", ["dokuCardHeader"], { "background": "background"; "withDivider": "withDivider"; "dense": "dense"; }, {}, never, ["*"], true>;
}