@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>
37 lines (36 loc) • 935 B
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 in the card footer.
*/
primaryFooterActionLabel: string;
primaryFooterAction: EventEmitter<any>;
/**
* Secondary action in the card footer.
*/
secondaryFooterActionLabel: string;
secondaryFooterAction: EventEmitter<any>;
/**
* Action in the card header.
*/
headerActionLabel: string;
headerAction: EventEmitter<any>;
cardClass: boolean;
/**
* Skeleton state.
*/
skeleton: boolean;
showFooter: boolean;
ngOnInit(): void;
onPrimaryFooterAction($event: any): void;
onSecondaryFooterAction($event: any): void;
onHeaderAction($event: any): void;
}