forked from microsoft/vscode-custom-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb-components.html-data.json
469 lines (469 loc) · 14.3 KB
/
web-components.html-data.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
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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
{
"version": 1.1,
"tags": [
{
"name": "relative-time",
"description": "A relative time-ago-in-words description can be generated by using the `relative-time` element extension.\n\nAdd a `<relative-time>` element to your markup. Provide a default formatted date as the element's text content (e.g. April 1, 2014).\n\n``` html\n<relative-time datetime=\"2014-04-01T16:30:00-08:00\">\n April 1, 2014\n</relative-time>\n```\n\nDepending on how far in the future this is being viewed, the element's text will be replaced with one of the following formats:\n\n- 6 years from now\n- 20 days from now\n- 4 hours from now\n- 7 minutes from now\n- just now\n- 30 seconds ago\n- a minute ago\n- 30 minutes ago\n- an hour ago\n- 20 hours ago\n- a day ago\n- 20 days ago\n- on Apr 1, 2014\n\nSo, a relative date phrase is used for up to a month and then the actual date is shown.",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#relative-time"
},
{
"name": "WebComponents",
"url": "https://www.webcomponents.org/element/time-elements#relative-time"
},
{
"name": "NPM",
"url": "https://www.npmjs.com/package/@github/time-elements#relative-time"
}
],
"attributes": [
{
"name": "datetime",
"description": "Value Type: ISO 8601 date.\nDescription: Required date of element such as `2014-06-01T13:05:07Z`",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#options"
}
]
},
{
"name": "year",
"description": "Value Type: 2-digit, numeric.\nDescription: Format year as `14` or `2014`",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#options"
}
]
},
{
"name": "month",
"description": "Value Type: short, long\nDescription: Format month as `Jun` or `June`",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#options"
}
]
},
{
"name": "day",
"description": "Value Type: 2-digit, numeric\nDescription: Format day as `01` or `1`",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#options"
}
]
},
{
"name": "weekday",
"description": "Value Type: short, long\nDescription: Format weekday as `Sun` or `Sunday`",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#options"
}
]
},
{
"name": "hour",
"description": "Value Type: 2-digit, numeric\nDescription: Format hour as `01` or `1`",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#options"
}
]
},
{
"name": "minute",
"description": "Value Type: 2-digit, numeric.\nDescription: Format minute as `05` or `5`",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#options"
}
]
},
{
"name": "second",
"description": "Value Type: 2-digit, numeric.\nDescription: Format second as `07` or `7`",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#options"
}
]
},
{
"name": "time-zone-name",
"description": "Value Type: short, long\nDescription: Display time zone as `GMT+1` or by its full name",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#options"
}
]
}
]
},
{
"name": "time-until",
"description": "You can use `time-until` to always display a relative date that's in the future. It operates much like `<relative-time>`, except in the reverse, with past events shown as `just now` and future events always showing as relative:\n\n- 10 years from now\n- 20 days from now\n- 6 hours from now\n- 20 minutes from now\n- 30 seconds from now\n- just now\n\nAdd a `<time-until>` element to your markup. Provide a default formatted date as the element's text content (e.g. April 1, 2024).\n\n```html\n<time-until datetime=\"2024-04-01T16:30:00-08:00\">\n April 1, 2024\n</time-until>\n```\n",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#time-until"
},
{
"name": "WebComponents",
"url": "https://www.webcomponents.org/element/time-elements#time-until"
},
{
"name": "NPM",
"url": "https://www.npmjs.com/package/@github/time-elements#time-until"
}
],
"attributes": [
{
"name": "datetime",
"description": "Value Type: ISO 8601 date.\nDescription: Required date of element such as `2014-06-01T13:05:07Z`",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#options"
}
]
},
{
"name": "year",
"description": "Value Type: 2-digit, numeric.\nDescription: Format year as `14` or `2014`",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#options"
}
]
},
{
"name": "month",
"description": "Value Type: short, long\nDescription: Format month as `Jun` or `June`",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#options"
}
]
},
{
"name": "day",
"description": "Value Type: 2-digit, numeric\nDescription: Format day as `01` or `1`",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#options"
}
]
},
{
"name": "weekday",
"description": "Value Type: short, long\nDescription: Format weekday as `Sun` or `Sunday`",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#options"
}
]
},
{
"name": "hour",
"description": "Value Type: 2-digit, numeric\nDescription: Format hour as `01` or `1`",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#options"
}
]
},
{
"name": "minute",
"description": "Value Type: 2-digit, numeric.\nDescription: Format minute as `05` or `5`",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#options"
}
]
},
{
"name": "second",
"description": "Value Type: 2-digit, numeric.\nDescription: Format second as `07` or `7`",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#options"
}
]
},
{
"name": "time-zone-name",
"description": "Value Type: short, long\nDescription: Display time zone as `GMT+1` or by its full name",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#options"
}
]
}
]
},
{
"name": "time-ago",
"description": "An *always* relative time-ago-in-words description can be generated by using the `time-ago` element extension. This is similar to the `relative-time` extension. However, this will never switch to displaying the date. It strictly shows relative date phrases, even after a month has passed.\n\n```html\n<time-ago datetime=\"2012-04-01T16:30:00-08:00\">\n April 1, 2014\n</time-ago>\n```\n\nFor example, if this markup is viewed two years in the future, the element's text will read `2 years ago`.",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#time-ago"
},
{
"name": "WebComponents",
"url": "https://www.webcomponents.org/element/time-elements#time-ago"
},
{
"name": "NPM",
"url": "https://www.npmjs.com/package/@github/time-elements#time-ago"
}
],
"attributes": [
{
"name": "format",
"description": "The optional `format=\"micro\"` attribute shortens the descriptions to 1m, 1h, 1d, 1y.\n```html\n<time-ago datetime=\"2012-04-01T16:30:00-08:00\" format=\"micro\">\n April 1, 2014\n</time-ago>\n```",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#micro-format"
},
{
"name": "WebComponents",
"url": "https://www.webcomponents.org/element/time-elements#micro-format"
},
{
"name": "NPM",
"url": "https://www.npmjs.com/package/@github/time-elements#micro-format"
}
],
"values": [
{
"name": "micro",
"description": "The optional `format=\"micro\"` attribute shortens the descriptions to 1m, 1h, 1d, 1y."
}
]
},
{
"name": "datetime",
"description": "Value Type: ISO 8601 date.\nDescription: Required date of element such as `2014-06-01T13:05:07Z`",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#options"
}
]
},
{
"name": "year",
"description": "Value Type: 2-digit, numeric.\nDescription: Format year as `14` or `2014`",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#options"
}
]
},
{
"name": "month",
"description": "Value Type: short, long\nDescription: Format month as `Jun` or `June`",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#options"
}
]
},
{
"name": "day",
"description": "Value Type: 2-digit, numeric\nDescription: Format day as `01` or `1`",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#options"
}
]
},
{
"name": "weekday",
"description": "Value Type: short, long\nDescription: Format weekday as `Sun` or `Sunday`",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#options"
}
]
},
{
"name": "hour",
"description": "Value Type: 2-digit, numeric\nDescription: Format hour as `01` or `1`",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#options"
}
]
},
{
"name": "minute",
"description": "Value Type: 2-digit, numeric.\nDescription: Format minute as `05` or `5`",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#options"
}
]
},
{
"name": "second",
"description": "Value Type: 2-digit, numeric.\nDescription: Format second as `07` or `7`",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#options"
}
]
},
{
"name": "time-zone-name",
"description": "Value Type: short, long\nDescription: Display time zone as `GMT+1` or by its full name",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#options"
}
]
}
]
},
{
"name": "local-time",
"description": "This custom time extension is useful for formatting a date and time in the user's preferred locale format.\n\n```html\n<local-time datetime=\"2014-04-01T16:30:00-08:00\"\n month=\"short\"\n day=\"numeric\"\n year=\"numeric\"\n hour=\"numeric\"\n minute=\"numeric\">\n April 1, 2014 4:30PM PDT\n</local-time>\n```\n\nWhen this markup is viewed in a CDT timezone, it will show `Apr 1, 2014 6:30PM`. If it's viewed in a browser with European date preferences, it will read `1 Apr 2014 18:30`.",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#local-time"
},
{
"name": "WebComponents",
"url": "https://www.webcomponents.org/element/time-elements#local-time"
},
{
"name": "NPM",
"url": "https://www.npmjs.com/package/@github/time-elements#local-time"
}
],
"attributes": [
{
"name": "datetime",
"description": "Value Type: ISO 8601 date.\nDescription: Required date of element such as `2014-06-01T13:05:07Z`",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#options"
}
]
},
{
"name": "year",
"description": "Value Type: 2-digit, numeric.\nDescription: Format year as `14` or `2014`",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#options"
}
]
},
{
"name": "month",
"description": "Value Type: short, long\nDescription: Format month as `Jun` or `June`",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#options"
}
]
},
{
"name": "day",
"description": "Value Type: 2-digit, numeric\nDescription: Format day as `01` or `1`",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#options"
}
]
},
{
"name": "weekday",
"description": "Value Type: short, long\nDescription: Format weekday as `Sun` or `Sunday`",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#options"
}
]
},
{
"name": "hour",
"description": "Value Type: 2-digit, numeric\nDescription: Format hour as `01` or `1`",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#options"
}
]
},
{
"name": "minute",
"description": "Value Type: 2-digit, numeric.\nDescription: Format minute as `05` or `5`",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#options"
}
]
},
{
"name": "second",
"description": "Value Type: 2-digit, numeric.\nDescription: Format second as `07` or `7`",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#options"
}
]
},
{
"name": "time-zone-name",
"description": "Value Type: short, long\nDescription: Display time zone as `GMT+1` or by its full name",
"references": [
{
"name": "GitHub",
"url": "https://github.com/github/time-elements#options"
}
]
}
]
}
]
}