mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-22 09:35:37 -05:00
added dropdown and form layout to model view (#1269)
* added dropdown and form layout to model view
This commit is contained in:
@@ -68,14 +68,17 @@ export enum ModelComponentTypes {
|
||||
FlexContainer,
|
||||
Card,
|
||||
InputBox,
|
||||
DropDown,
|
||||
Button,
|
||||
DashboardWidget,
|
||||
DashboardWebview
|
||||
DashboardWebview,
|
||||
Form
|
||||
}
|
||||
|
||||
export interface IComponentShape {
|
||||
type: ModelComponentTypes;
|
||||
id: string;
|
||||
properties?: { [key: string]: any };
|
||||
properties?: { [key: string]: any };
|
||||
layout?: any;
|
||||
itemConfigs?: IItemConfig[];
|
||||
}
|
||||
@@ -87,7 +90,8 @@ export interface IItemConfig {
|
||||
|
||||
export enum ComponentEventType {
|
||||
PropertiesChanged,
|
||||
onDidChange
|
||||
onDidChange,
|
||||
onDidClick
|
||||
}
|
||||
|
||||
export interface IComponentEventArgs {
|
||||
|
||||
Reference in New Issue
Block a user