-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvss-extension.json
More file actions
213 lines (212 loc) · 6.89 KB
/
vss-extension.json
File metadata and controls
213 lines (212 loc) · 6.89 KB
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
{
"manifestVersion": 1,
"id": "Rich-Date-Control",
"version": "1.0.32",
"name": "Give you the option to set date and manipulate it",
"scopes": [
"vso.code_full",
"vso.work_write"
],
"description": "Date Control, with range and visualisation",
"publisher": "AviHadad",
"icons": {
"default": "img/logo.png"
},
"targets": [{
"id": "Microsoft.VisualStudio.Services",
"version": "[15.0,)"
}],
"tags": [
"Work Item",
"Work Item control",
"Usability",
"Date",
"Range",
"Limit"
],
"content": {
"details": {
"path": "details.md"
},
"license": {
"path": "LICENSE.md"
},
"privacy": {
"path": "PRIVACY.md"
}
},
"repository": {
"type": "git",
"uri": "https://github.com/avih75/AzureDevops_Rich_Date_Field_Control"
},
"links": {
"support": {
"uri": "https://github.com/avih75/AzureDevops_Rich_Date_Field_Control/issues"
},
"license": {
"uri": "https://github.com/avih75/AzureDevops_Rich_Date_Field_Control/blob/master/LICENSE.md"
},
"privacypolicy": {
"uri": "https://github.com/avih75/AzureDevops_Rich_Date_Field_Control/blob/master/PRIVACY.md"
},
"learn": {
"uri": "https://github.com/avih75/AzureDevops_Rich_Date_Field_Control/blob/master/README.md"
},
"repository": {
"uri": "https://github.com/avih75/AzureDevops_Rich_Date_Field_Control"
},
"issues": {
"uri": "https://github.com/avih75/AzureDevops_Rich_Date_Field_Control/issues"
}
},
"files": [{
"path": "img",
"addressable": true
},
{
"path": "scripts",
"addressable": true
},
{
"path": "dateIndex.html",
"addressable": true
}
],
"categories": [
"Azure Boards"
],
"contributions": [{
"id": "date",
"description": "option to set date and mnipulate it",
"type": "ms.vss-work-web.work-item-form-control",
"targets": [
"ms.vss-work-web.work-item-form"
],
"properties": {
"name": "Rich Date Field",
"uri": "dateIndex.html",
"inputs": [{
"id": "dateValue",
"name": "Date Field",
"description": "This field get the Date value field of the work item",
"type": "WorkItemField",
"properties": {
"workItemFieldTypes": [
"DateTime"
]
},
"validation": {
"isRequired": true
}
}, {
"id": "pastLimitation",
"name": "Min Range",
"description": "Turn on and off the Min date Range",
"inputMode": "CheckBox",
"validation": {
"dataType": "Boolean"
}
}, {
"id": "backDateRef",
"name": "Range Start Anchor",
"description": "This field get the min Date value field",
"type": "WorkItemField",
"properties": {
"workItemFieldTypes": [
"DateTime"
]
},
"validation": {
"isRequired": false
}
}, {
"id": "backValue",
"name": "Range Start Anchor stretch",
"description": "(number) This field get max back days value",
"inputMode": "TextBox",
"validation": {
"dataType": "Number",
"isRequired": false
}
}, {
"id": "futureLimitation",
"name": "Max Range",
"description": "Turn on and off the future date limitation",
"inputMode": "CheckBox",
"validation": {
"dataType": "Boolean"
}
}, {
"id": "forwordDatRef",
"name": "Range End Anchor",
"description": "This field get the Max Date value field",
"type": "WorkItemField",
"properties": {
"workItemFieldTypes": [
"DateTime"
]
},
"validation": {
"isRequired": false
}
}, {
"id": "forwordValue",
"name": "Range End Anchor stretch",
"description": "(number) This field get max back days value",
"inputMode": "TextBox",
"validation": {
"dataType": "Number",
"isRequired": false
}
}, {
"id": "stateToFollow",
"name": "Statuses Target",
"description": "This field get the states you want to use, seperated with ',' ",
"inputMode": "TextBox",
"validation": {
"dataType": "String",
"isRequired": false
}
}, {
"id": "stateValue",
"name": "Boolean Field - Is the Date Passes",
"description": "This field get the Max Date value field",
"type": "WorkItemField",
"properties": {
"workItemFieldTypes": [
"Boolean"
]
},
"validation": {
"isRequired": false
}
}, {
"id": "stateOfState",
"name": "Status Is/Is Not",
"description": "This field control wheter the state is or not the state you want to follow (Is/IsNot)",
"inputMode": "CheckBox",
"validation": {
"dataType": "Boolean"
}
}, {
"id": "stateDays",
"name": "Check Date Gap",
"description": "Add Gap to the check if the date for state passed",
"inputMode": "TextBox",
"validation": {
"dataType": "Number",
"isRequired": false
}
}, {
"id": "dateFormat",
"name": "Date Field Format",
"description": "This field get the format you want to use in the field",
"inputMode": "TextBox",
"validation": {
"dataType": "String",
"isRequired": false
}
}]
}
}]
}