@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>
58 lines (57 loc) • 1.35 kB
TypeScript
import { EventEmitter, OnInit } from '@angular/core';
export declare class Card implements OnInit {
/**
* Title content for the card.
*/
title: string;
/**
* Set to `true` to auto-wrap content in section
*/
sectioned: boolean;
/**
* Primary action label.
*/
primaryFooterActionLabel: string;
/**
* Callback for the primary action
*/
primaryFooterAction: EventEmitter<any>;
/**
* Secondary action label.
*/
secondaryFooterActionLabel: string;
/**
* Callback for the secondary action
*/
secondaryFooterAction: EventEmitter<any>;
/**
* Card header action label
*/
headerActionLabel: string;
/**
* Callback for the card header action
*/
headerAction: EventEmitter<any>;
cardClass: boolean;
/**
* Set to `true` to display a loading card.
*/
skeleton: boolean;
/**
* Display footer state.
*/
showFooter: boolean;
ngOnInit(): void;
/**
* Emits the cards primary footer action callback
*/
onPrimaryFooterAction($event: any): void;
/**
* Emits the cards secondary footer action callback
*/
onSecondaryFooterAction($event: any): void;
/**
* Emits the cards header action callback
*/
onHeaderAction($event: any): void;
}