theme-lib
Version:
This is a simple example Angular Library published to npm.
58 lines (57 loc) • 2.04 kB
TypeScript
export declare class NbCardHeaderComponent {
}
export declare class NbCardBodyComponent {
}
export declare class NbCardFooterComponent {
}
export declare class NbCardComponent {
static readonly SIZE_XXSMALL = "xxsmall";
static readonly SIZE_XSMALL = "xsmall";
static readonly SIZE_SMALL = "small";
static readonly SIZE_MEDIUM = "medium";
static readonly SIZE_LARGE = "large";
static readonly SIZE_XLARGE = "xlarge";
static readonly SIZE_XXLARGE = "xxlarge";
static readonly STATUS_ACTIVE = "active";
static readonly STATUS_DISABLED = "disabled";
static readonly STATUS_PRIMARY = "primary";
static readonly STATUS_INFO = "info";
static readonly STATUS_SUCCESS = "success";
static readonly STATUS_WARNING = "warning";
static readonly STATUS_DANGER = "danger";
static readonly ACCENT_ACTIVE = "active";
static readonly ACCENT_DISABLED = "disabled";
static readonly ACCENT_PRIMARY = "primary";
static readonly ACCENT_INFO = "info";
static readonly ACCENT_SUCCESS = "success";
static readonly ACCENT_WARNING = "warning";
static readonly ACCENT_DANGER = "danger";
size: string;
status: string;
accent: string;
readonly xxsmall: boolean;
readonly xsmall: boolean;
readonly small: boolean;
readonly medium: boolean;
readonly large: boolean;
readonly xlarge: boolean;
readonly xxlarge: boolean;
readonly active: boolean;
readonly disabled: boolean;
readonly primary: boolean;
readonly info: boolean;
readonly success: boolean;
readonly warning: boolean;
readonly danger: boolean;
readonly hasAccent: string;
readonly primaryAccent: boolean;
readonly infoAccent: boolean;
readonly successAccent: boolean;
readonly warningAccent: boolean;
readonly dangerAccent: boolean;
readonly activeAccent: boolean;
readonly disabledAccent: boolean;
private setSize;
private setStatus;
private setAccent;
}