Merge pull request #12533 from Microsoft/ux/panels

Ux/panels
This commit is contained in:
Isidor Nikolic
2016-09-23 18:06:41 +02:00
committed by GitHub
24 changed files with 269 additions and 150 deletions

View File

@@ -62,12 +62,12 @@ export interface IActivityService {
_serviceBrand: any;
/**
* Show activity in the activitybar for the given viewlet.
* Show activity in the activitybar for the given viewlet or panel.
*/
showActivity(viewletId: string, badge: IBadge, clazz?: string): void;
showActivity(compositeId: string, badge: IBadge, clazz?: string): void;
/**
* Clears activity shown in the activitybar for the given viewlet.
* Clears activity shown in the activitybar for the given viewlet or panel.
*/
clearActivity(viewletId: string): void;
clearActivity(compositeId: string): void;
}