add toggle button for properties container (#16335)

This commit is contained in:
Alan Ren
2021-07-19 23:36:52 -07:00
committed by GitHub
parent 9b31e7beac
commit 1000e97091
6 changed files with 74 additions and 3 deletions

View File

@@ -1016,4 +1016,11 @@ declare module 'azdata' {
export interface VisualizationOptions {
type: VisualizationType;
}
export interface PropertiesContainerComponentProperties {
/**
* Whether to show the button that will hide/show the content of the container. Default value is false.
*/
showToggleButton?: boolean;
}
}