fixing model view issues (#1737)

* fixing model view issues
This commit is contained in:
Leila Lali
2018-06-26 16:40:41 -07:00
committed by GitHub
parent ca5e1e6133
commit 549037f744
6 changed files with 26 additions and 11 deletions

View File

@@ -301,7 +301,7 @@ declare module 'sqlops' {
}
export enum CardType {
VerticalButton = 'VerticalButton',
VerticalButton = 'VerticalButton',
Details = 'Details'
}
@@ -314,8 +314,16 @@ declare module 'sqlops' {
value?: string;
actions?: ActionDescriptor[];
status?: StatusIndicator;
/**
* Returns true if the card is selected
*/
selected?: boolean;
cardType: CardType;
/**
* Card Type, default: Details
*/
cardType?: CardType;
}
export type InputBoxInputType = 'color' | 'date' | 'datetime-local' | 'email' | 'month' | 'number' | 'password' | 'range' | 'search' | 'text' | 'time' | 'url' | 'week';