mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-19 01:25:36 -05:00
Feature/input box component (#1190)
* Adding new view component for input box
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user