azure-boards-ui 2.167.52 → 2.167.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1 +1 @@
|
|
|
1
|
-
var DEFAULT_WORKITEMTYPE_COLOR_AND_ICON={color:"__default__",icon:"__default__",workItemTypeName:""};export{DEFAULT_WORKITEMTYPE_COLOR_AND_ICON};
|
|
1
|
+
var DEFAULT_WORKITEMTYPE_COLOR_AND_ICON={color:"__default__",icon:"__default__",workItemTypeName:"",isDisabled:!1};export{DEFAULT_WORKITEMTYPE_COLOR_AND_ICON};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { IObservableValue } from "azure-devops-ui/Core/Observable";
|
|
2
2
|
/**
|
|
3
|
-
* Describes work item type
|
|
3
|
+
* Describes work item type name, its icon and color.
|
|
4
4
|
*/
|
|
5
5
|
export declare type WorkItemTypeColorAndIcon = {
|
|
6
6
|
/**
|
|
@@ -8,13 +8,17 @@ export declare type WorkItemTypeColorAndIcon = {
|
|
|
8
8
|
*/
|
|
9
9
|
color: string;
|
|
10
10
|
/**
|
|
11
|
-
*
|
|
11
|
+
* The work item type icon.
|
|
12
12
|
*/
|
|
13
13
|
icon: string;
|
|
14
14
|
/**
|
|
15
15
|
* The name of the work item type.
|
|
16
16
|
*/
|
|
17
17
|
workItemTypeName: string;
|
|
18
|
+
/**
|
|
19
|
+
* Indicates if the work item is disabled in the process.
|
|
20
|
+
*/
|
|
21
|
+
isDisabled: boolean;
|
|
18
22
|
};
|
|
19
23
|
/**
|
|
20
24
|
* Property for the WorkItemTypeIcon component
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "azure-boards-ui",
|
|
3
|
-
"version": "2.167.
|
|
3
|
+
"version": "2.167.53",
|
|
4
4
|
"description": "React components for building web UI in Azure Boards",
|
|
5
5
|
"author": "Microsoft Corporation",
|
|
6
6
|
"license": "MIT",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"url": "https://github.com/Microsoft/azure-devops-ui"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"azure-devops-ui": "2.167.
|
|
12
|
+
"azure-devops-ui": "2.167.53",
|
|
13
13
|
"tslib": "~1.10.0"
|
|
14
14
|
},
|
|
15
15
|
"peerDependencies": {
|