vss-web-extension-sdk
Advanced tools
Comparing version 5.131.0 to 5.134.0
{ | ||
"name": "vss-web-extension-sdk", | ||
"version": "5.131.0", | ||
"version": "5.134.0", | ||
"description": "Visual Studio Team Services web extension JavaScript library and types.", | ||
@@ -5,0 +5,0 @@ "repository": { |
@@ -1,2 +0,2 @@ | ||
// Type definitions for Microsoft Visual Studio Services v131.20180313.2116 | ||
// Type definitions for Microsoft Visual Studio Services v134.20180525.1751 | ||
// Project: https://www.visualstudio.com/integrate/extensions/overview | ||
@@ -42,3 +42,2 @@ // Definitions by: Microsoft <vsointegration@microsoft.com> | ||
export interface FeatureColorProvider { | ||
init(dimension: string): void; | ||
getFeatureColor(key: string, isSubdued?: boolean): ColorPair; | ||
@@ -52,4 +51,2 @@ } | ||
setColorPair(key: string, colorPair: ColorPair): void; | ||
/** Allows the caller to remove color customization on the specified color */ | ||
unsetColorPair(key: string): void; | ||
/**Indicates if a user-customized Color Pair is associated with the requested key */ | ||
@@ -61,9 +58,10 @@ hasCustomColorPair(key: string): boolean; | ||
} | ||
/** | ||
* A key value pair for a user selected color preference. | ||
* Foreground color is omitted because it is mapped from matching background Color. | ||
*/ | ||
export interface ColorEntry { | ||
/** | ||
* A key value pair for a user selected color preference. | ||
* Foreground color is omitted because it is mapped from matching background Color. | ||
* Invalid color selections are rejected as policy on server. | ||
*/ | ||
/** The key for the color entry */ | ||
value: string; | ||
/** The background hex color value for this entry */ | ||
backgroundColor: string; | ||
@@ -70,0 +68,0 @@ } |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
2869687
79178