Feature/selectable card component (#1703)

* added selectable card

* creating new card type
This commit is contained in:
Leila Lali
2018-06-22 14:25:21 -07:00
committed by GitHub
parent 322847469d
commit a627285a4c
12 changed files with 327 additions and 86 deletions

View File

@@ -208,6 +208,8 @@ export interface CardProperties {
value?: string;
actions?: ActionDescriptor[];
status?: StatusIndicator;
selected?: boolean;
cardType: CardType;
}
export interface ActionDescriptor {
@@ -236,4 +238,9 @@ export enum DeclarativeDataType {
string = 'string',
category = 'category',
boolean = 'boolean'
}
export enum CardType {
VerticalButton = 'VerticalButton',
Details = 'Details'
}