-
Notifications
You must be signed in to change notification settings - Fork 11
/
vss-extension.json
99 lines (99 loc) · 2.96 KB
/
vss-extension.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"manifestVersion": 1,
"version": "0.5.0",
"name": "Markdown",
"scopes": [
"vso.work",
"vso.work_write"
],
"description": "Markdown editor for the work item form",
"publisher": "cschleiden",
"id": "markdown",
"icons": {
"default": "marketplace/logo.png"
},
"targets": [
{
"id": "Microsoft.VisualStudio.Services.Cloud"
}
],
"tags": [
"work items", "markdown", "editor", "custom control"
],
"content": {
"details": {
"path": "marketplace/details.md"
}
},
"links": {
"support": {
"uri": "mailto:[email protected]"
}
},
"branding": {
"color": "rgb(220, 235, 252)",
"theme": "light"
},
"categories": [
"Plan and track"
],
"contributions": [
{
"id": "markdown-control",
"type": "ms.vss-work-web.work-item-form-control",
"description": "Markdown",
"targets": [
"ms.vss-work-web.work-item-form"
],
"properties": {
"name": "Markdown",
"uri": "src/index.html",
"height": 150,
"inputs": [
{
"id": "FieldName",
"name": "HTML field to show Markdown editor for",
"description": "The field associated with the control.",
"type": "WorkItemField",
"properties": {
"workItemFieldTypes": [
"HTML"
]
},
"validation": {
"dataType": "String",
"isRequired": true
}
},
{
"id": "height",
"name": "Initial height",
"description": "Height of the control on the form (default 150px)",
"validation": {
"dataType": "Number",
"isRequired": false,
"default": 150
}
},
{
"id": "fullHeight",
"name": "Full height",
"description": "Height of the control on the form when maximized (default 500px)",
"validation": {
"dataType": "Number",
"isRequired": false
}
}
]
}
},
{
"id": "fullscreenView",
"type": "ms.vss-web.control",
"targets": [],
"properties": {
"uri": "src/dialog.html"
}
}
]
}