vsts-extension-multivalue-c.../azure-devops-extension.json

113 строки
3.6 KiB
JSON

{
"manifestVersion": 1.0,
"id": "vsts-extensions-multivalue-control",
"version": "2.2.28",
"name": "Multivalue control",
"description": "A work item form control which allows selection of multiple values.",
"publisher": "ms-devlabs",
"icons": {
"default": "img/logo.png"
},
"categories": [
"Azure Boards"
],
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"files": [
{
"path": "dist",
"addressable": true
},
{
"path": "img",
"addressable": true
}
],
"repository": {
"type": "git",
"uri": "https://github.com/Microsoft/vsts-extension-multivalue-control"
},
"links": {
"home": {
"uri": "https://github.com/Microsoft/vsts-extension-multivalue-control"
},
"learn": {
"uri": "https://github.com/Microsoft/vsts-extension-multivalue-control"
},
"repository": {
"uri": "https://github.com/Microsoft/vsts-extension-multivalue-control"
},
"issues": {
"uri": "https://github.com/Microsoft/vsts-extension-multivalue-control/issues"
},
"support": {
"uri": "https://github.com/Microsoft/vsts-extension-multivalue-control/issues"
}
},
"tags": [
"Work Items",
"Extensions",
"Work Item Control",
"Sample",
"Multivalue Control"
],
"content": {
"details": {
"path": "readme.md"
}
},
"scopes": [
"vso.work"
],
"contributions": [
{
"id": "multivalue-form-control",
"type": "ms.vss-work-web.work-item-form-control",
"description": "A work item form control which allows selection of multiple values.",
"targets": [
"ms.vss-work-web.work-item-form"
],
"properties": {
"name": "Multivalue control",
"uri": "dist/multivalue.html",
"height": 50,
"inputs": [
{
"id":"FieldName",
"name": "Select the field for this control. This is the only input needed if the field is a picklist field with suggested values.",
"type": "WorkItemField",
"properties": {
"workItemFieldTypes": ["String", "PlainText", "HTML"]
},
"validation": {
"dataType": "String",
"isRequired": true
}
},
{
"id":"Values",
"name": "Choose values for the control. This is only required if you're not using a picklist field. Example: Windows; IOS; Linux",
"description": "Values can be user provided or from suggested values of the backing field",
"validation": {
"dataType": "String",
"isRequired": false
}
},
{
"id":"AllowCustom",
"name": "Allow users to enter custom values",
"inputMode": "CheckBox",
"validation": {
"dataType": "Boolean",
"isRequired": false
}
}
]
}
}
]
}