Feature/input box component (#1190)

* Adding new view component for input box
This commit is contained in:
Leila Lali
2018-04-20 16:26:58 -07:00
committed by GitHub
parent 93aa052856
commit a7c4686980
11 changed files with 289 additions and 18 deletions

View File

@@ -67,6 +67,7 @@ export enum ModelComponentTypes {
NavContainer,
FlexContainer,
Card,
InputBox,
DashboardWidget,
DashboardWebview
}
@@ -83,3 +84,13 @@ export interface IItemConfig {
componentShape: IComponentShape;
config: any;
}
export enum ComponentEventType {
PropertiesChanged,
onDidChange
}
export interface IComponentEventArgs {
eventType: ComponentEventType;
args: any;
}