-
Notifications
You must be signed in to change notification settings - Fork 2
/
custom-elements.json
741 lines (741 loc) · 26.9 KB
/
custom-elements.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
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
{
"version": "experimental",
"tags": [
{
"name": "api-type-document",
"path": "./api-type-document.js",
"description": "`api-type-document`\n\nAn element that recursively renders a documentation for a data type\nusing from model.\n\nPass AMF's shape type `property` array to render the documentation.",
"attributes": [
{
"name": "selectedMediaType",
"description": "Currently selected media type.\nIt is an index of a media type in `mediaTypes` array.\nIt is set to `0` each time the body changes.",
"type": "number"
},
{
"name": "parentTypeName",
"description": "Should be set if described properties has a parent type.\nThis is used when recursively iterating over properties.",
"type": "string"
},
{
"name": "hasParentType",
"description": "Computed value, true if the shape has parent type.",
"type": "boolean"
},
{
"name": "isScalar",
"description": "True if given `type` is a scalar property",
"type": "boolean"
},
{
"name": "isArray",
"description": "True if given `type` is an array property",
"type": "boolean"
},
{
"name": "isObject",
"description": "True if given `type` is an object property",
"type": "boolean"
},
{
"name": "isUnion",
"description": "True if given `type` is an union property",
"type": "boolean"
},
{
"name": "isAnd",
"description": "True if given `type` is OAS \"and\" type.",
"type": "boolean"
},
{
"name": "isOneOf",
"description": "True if given `type` is OAS \"oneOf\" type.",
"type": "boolean"
},
{
"name": "isAnyOf",
"description": "True if given `type` is OAS \"anyOf\" type.",
"type": "boolean"
},
{
"name": "selectedUnion",
"description": "Selected index of union type in `unionTypes` array.",
"type": "number"
},
{
"name": "selectedOneOf",
"description": "Selected index of oneOf type in `oneOfTypes` array.",
"type": "number"
},
{
"name": "selectedAnyOf",
"description": "Selected index of anyOf type in `anyOfTypes` array.",
"type": "number"
},
{
"name": "narrow",
"description": "A property to set when the component is rendered in the narrow\nview. To be used with mobile rendering or when the\ncomponents occupies only small part of the screen.",
"type": "boolean"
},
{
"name": "noMainExample",
"description": "When set an example in this `type` object won't be rendered even if set.",
"type": "boolean"
},
{
"name": "selectedBodyId",
"description": "When rendering schema for a payload set this to the payload ID\nso the examples can be correctly rendered.",
"type": "string"
},
{
"name": "renderReadOnly",
"type": "boolean | undefined"
},
{
"name": "mediaType",
"description": "Media type to use to render examples.\nIf not set a \"raw\" version of the example from API spec file is used.",
"type": "string"
},
{
"name": "noExamplesActions",
"description": "When set it removes actions bar from the examples render.",
"type": "boolean"
},
{
"name": "compatibility",
"description": "Enables compatibility with Anypoint components.",
"type": "boolean"
},
{
"name": "graph",
"description": "When enabled it renders external types as links and dispatches\n`api-navigation-selection-changed` when clicked.",
"type": "boolean"
}
],
"properties": [
{
"name": "styles",
"type": "CSSResult"
},
{
"name": "type",
"description": "A type definition to render.\nThis should be a one of the following AMF types:\n\n- `http://www.w3.org/ns/shacl#NodeShape` (Object)\n- `http://raml.org/vocabularies/shapes#UnionShape` (Union)\n- `http://raml.org/vocabularies/shapes#ArrayShape` (Array)\n- `http://raml.org/vocabularies/shapes#ScalarShape` (single property)\n\nIt also accepts array of properties like list of headers or\nparameters.",
"type": "Object"
},
{
"name": "mediaTypes",
"description": "A list of supported media types for the type.\nThis is used by `api-resource-example-document` to compute examples.\nIn practice it should be value of raml's `mediaType`.\n\nEach item in the array is just a name of thr media type.\n\nExample:\n\n```json\n[\"application/json\", \"application/xml\"]\n```",
"type": "string[]"
},
{
"name": "selectedMediaType",
"attribute": "selectedMediaType",
"description": "Currently selected media type.\nIt is an index of a media type in `mediaTypes` array.\nIt is set to `0` each time the body changes.",
"type": "number"
},
{
"name": "parentTypeName",
"attribute": "parentTypeName",
"description": "Should be set if described properties has a parent type.\nThis is used when recursively iterating over properties.",
"type": "string"
},
{
"name": "hasParentType",
"attribute": "hasParentType",
"description": "Computed value, true if the shape has parent type.",
"type": "boolean"
},
{
"name": "isScalar",
"attribute": "isScalar",
"description": "True if given `type` is a scalar property",
"type": "boolean"
},
{
"name": "isArray",
"attribute": "isArray",
"description": "True if given `type` is an array property",
"type": "boolean"
},
{
"name": "isObject",
"attribute": "isObject",
"description": "True if given `type` is an object property",
"type": "boolean"
},
{
"name": "isUnion",
"attribute": "isUnion",
"description": "True if given `type` is an union property",
"type": "boolean"
},
{
"name": "isAnd",
"attribute": "isAnd",
"description": "True if given `type` is OAS \"and\" type.",
"type": "boolean"
},
{
"name": "isOneOf",
"attribute": "isOneOf",
"description": "True if given `type` is OAS \"oneOf\" type.",
"type": "boolean"
},
{
"name": "isAnyOf",
"attribute": "isAnyOf",
"description": "True if given `type` is OAS \"anyOf\" type.",
"type": "boolean"
},
{
"name": "unionTypes",
"description": "Computed list of union type types to render in union type\nselector.\nEach item has `label` and `isScalar` property.",
"type": "object[]"
},
{
"name": "oneOfTypes",
"description": "Computed list of oneOf type types to render in oneOf type\nselector.\nEach item has `label` and `isScalar` property.",
"type": "object[]"
},
{
"name": "anyOfTypes",
"description": "Computed list of anyOf type types to render in anyOf type\nselector.\nEach item has `label` and `isScalar` property.",
"type": "object[]"
},
{
"name": "andTypes",
"description": "List of types definition and name for OAS' \"and\" type",
"type": "Object[]"
},
{
"name": "selectedUnion",
"attribute": "selectedUnion",
"description": "Selected index of union type in `unionTypes` array.",
"type": "number"
},
{
"name": "selectedOneOf",
"attribute": "selectedOneOf",
"description": "Selected index of oneOf type in `oneOfTypes` array.",
"type": "number"
},
{
"name": "selectedAnyOf",
"attribute": "selectedAnyOf",
"description": "Selected index of anyOf type in `anyOfTypes` array.",
"type": "number"
},
{
"name": "narrow",
"attribute": "narrow",
"description": "A property to set when the component is rendered in the narrow\nview. To be used with mobile rendering or when the\ncomponents occupies only small part of the screen.",
"type": "boolean"
},
{
"name": "noMainExample",
"attribute": "noMainExample",
"description": "When set an example in this `type` object won't be rendered even if set.",
"type": "boolean"
},
{
"name": "selectedBodyId",
"attribute": "selectedBodyId",
"description": "When rendering schema for a payload set this to the payload ID\nso the examples can be correctly rendered.",
"type": "string"
},
{
"name": "renderReadOnly",
"attribute": "renderReadOnly",
"type": "boolean | undefined"
},
{
"name": "shape",
"description": "A property shape definition of AMF."
},
{
"name": "range",
"description": "Computes value of shape's http://raml.org/vocabularies/shapes#range"
},
{
"name": "mediaType",
"attribute": "mediaType",
"description": "Media type to use to render examples.\nIf not set a \"raw\" version of the example from API spec file is used.",
"type": "string"
},
{
"name": "noExamplesActions",
"attribute": "noExamplesActions",
"description": "When set it removes actions bar from the examples render.",
"type": "boolean"
},
{
"name": "compatibility",
"attribute": "compatibility",
"description": "Enables compatibility with Anypoint components.",
"type": "boolean"
},
{
"name": "graph",
"attribute": "graph",
"description": "When enabled it renders external types as links and dispatches\n`api-navigation-selection-changed` when clicked.",
"type": "boolean"
},
{
"name": "ns",
"description": "A namespace for AMF model.",
"type": "Namespace"
},
{
"name": "amf",
"description": "Generated AMF json/ld model form the API spec.\nThe element assumes the object of the first array item to be a\ntype of `\"http://raml.org/vocabularies/document#Document`\non AMF vocabulary.\n\nIt is only useful for the element to resolve references.",
"type": "object | object[] | undefined"
}
]
},
{
"name": "property-range-document",
"path": "./property-range-document.js",
"description": "Renders a documentation for a shape property of AMF model.",
"attributes": [
{
"name": "propertyName",
"description": "Name of the property that is being described by this definition.",
"type": "string"
},
{
"name": "isEnum",
"description": "Computed value form the shape. True if the property is ENUM.",
"type": "boolean"
},
{
"name": "isUnion",
"description": "Computed value, true if current property is an union.",
"type": "boolean"
},
{
"name": "isObject",
"description": "Computed value, true if current property is an object.",
"type": "boolean"
},
{
"name": "isArray",
"description": "Computed value, true if current property is an array.",
"type": "boolean"
},
{
"name": "isFile",
"description": "Computed value, true if current property is a File.",
"type": "boolean"
},
{
"name": "exampleSectionTitle",
"type": "string"
},
{
"name": "mediaType",
"description": "Type's current media type.\nThis is used to select/generate examples according to current body\nmedia type. When not set it only renders examples that were defined\nin API spec file in a form as they were written.",
"type": "string"
},
{
"name": "noExamplesActions",
"description": "When set it removes actions bar from the examples render.",
"type": "boolean"
},
{
"name": "compatibility",
"description": "Enables compatibility with Anypoint components.",
"type": "boolean"
},
{
"name": "graph",
"description": "When enabled it renders external types as links and dispatches\n`api-navigation-selection-changed` when clicked.",
"type": "boolean"
}
],
"properties": [
{
"name": "styles",
"type": "CSSResult"
},
{
"name": "propertyName",
"attribute": "propertyName",
"description": "Name of the property that is being described by this definition.",
"type": "string"
},
{
"name": "isEnum",
"attribute": "isEnum",
"description": "Computed value form the shape. True if the property is ENUM.",
"type": "boolean"
},
{
"name": "isUnion",
"attribute": "isUnion",
"description": "Computed value, true if current property is an union.",
"type": "boolean"
},
{
"name": "isObject",
"attribute": "isObject",
"description": "Computed value, true if current property is an object.",
"type": "boolean"
},
{
"name": "isArray",
"attribute": "isArray",
"description": "Computed value, true if current property is an array.",
"type": "boolean"
},
{
"name": "isFile",
"attribute": "isFile",
"description": "Computed value, true if current property is a File.",
"type": "boolean"
},
{
"name": "enumValues",
"description": "Computed values for list of enums.\nEnums are list of types names.",
"type": "string[]"
},
{
"name": "exampleSectionTitle",
"attribute": "exampleSectionTitle",
"type": "string"
},
{
"name": "shape",
"description": "A property shape definition of AMF."
},
{
"name": "range",
"description": "Computes value of shape's http://raml.org/vocabularies/shapes#range",
"type": "object"
},
{
"name": "mediaType",
"attribute": "mediaType",
"description": "Type's current media type.\nThis is used to select/generate examples according to current body\nmedia type. When not set it only renders examples that were defined\nin API spec file in a form as they were written.",
"type": "string"
},
{
"name": "noExamplesActions",
"attribute": "noExamplesActions",
"description": "When set it removes actions bar from the examples render.",
"type": "boolean"
},
{
"name": "compatibility",
"attribute": "compatibility",
"description": "Enables compatibility with Anypoint components.",
"type": "boolean"
},
{
"name": "graph",
"attribute": "graph",
"description": "When enabled it renders external types as links and dispatches\n`api-navigation-selection-changed` when clicked.",
"type": "boolean"
},
{
"name": "ns",
"description": "A namespace for AMF model.",
"type": "Namespace"
},
{
"name": "amf",
"description": "Generated AMF json/ld model form the API spec.\nThe element assumes the object of the first array item to be a\ntype of `\"http://raml.org/vocabularies/document#Document`\non AMF vocabulary.\n\nIt is only useful for the element to resolve references.",
"type": "object | object[] | undefined"
}
]
},
{
"name": "property-shape-document",
"path": "./property-shape-document.js",
"description": "Renders a documentation for a shape property of AMF model.",
"attributes": [
{
"name": "displayName",
"description": "Computed value of \"display name\" of the property",
"type": "string"
},
{
"name": "propertyName",
"description": "A type property name.\nThis may be different from `displayName` property if\n`displayName` was specified in the API spec for this property.",
"type": "string"
},
{
"name": "hasDisplayName",
"description": "Computed value, true if `displayName` has been defined for this\nproperty.",
"type": "boolean"
},
{
"name": "isUnion",
"description": "Computed value, true if current property is an union.",
"type": "boolean"
},
{
"name": "isObject",
"description": "Computed value, true if current property is an object.",
"type": "boolean"
},
{
"name": "isArray",
"description": "Computed value, true if current property is an array.",
"type": "boolean"
},
{
"name": "isScalarArray",
"description": "Computed value, true if current property is an array and the item\nis a scalar.",
"type": "boolean"
},
{
"name": "isComplex",
"description": "Computed value, true if this property contains a complex\nstructure. It is computed when the property is and array,\nobject, or union.",
"type": "boolean"
},
{
"name": "parentTypeName",
"description": "Should be set if described properties has a parent type.\nThis is used when recursively iterating over properties.",
"type": "string"
},
{
"name": "hasParentTypeName",
"description": "Computed value, true if `parentTypeName` has a value.",
"type": "boolean"
},
{
"name": "propertyDataType",
"description": "Computed value of shape data type",
"type": "string"
},
{
"name": "isRequired",
"description": "Computed value form the shape. True if the property is required.",
"type": "boolean"
},
{
"name": "isEnum",
"description": "Computed value form the shape. True if the property is ENUM.",
"type": "boolean"
},
{
"name": "isReadOnly",
"description": "Computed value form the shape. True if the property is read only.",
"type": "boolean"
},
{
"name": "propertyDescription",
"description": "A description of the property to render.",
"type": "string"
},
{
"name": "hasPropertyDescription",
"description": "Computed value, true if description is set.",
"type": "boolean"
},
{
"name": "narrow",
"description": "A property to set when the component is rendered in the narrow\nview. To be used with mobile rendering or when the\ncomponents occupies only small part of the screen.",
"type": "boolean"
},
{
"name": "opened",
"description": "When `isComplex` is true this determines if the complex structure\nis currently rendered.",
"type": "boolean"
},
{
"name": "renderReadOnly",
"type": "boolean"
},
{
"name": "mediaType",
"description": "Type's current media type.\nThis is used to select/generate examples according to current body\nmedia type. When not set it only renders examples that were defined\nin API spec file in a form as they were written.",
"type": "string"
},
{
"name": "noExamplesActions",
"description": "When set it removes actions bar from the examples render.",
"type": "boolean"
},
{
"name": "compatibility",
"description": "Enables compatibility with Anypoint components.",
"type": "boolean"
},
{
"name": "graph",
"description": "When enabled it renders external types as links and dispatches\n`api-navigation-selection-changed` when clicked.",
"type": "boolean"
}
],
"properties": [
{
"name": "styles",
"type": "CSSResult[]"
},
{
"name": "displayName",
"attribute": "displayName",
"description": "Computed value of \"display name\" of the property",
"type": "string"
},
{
"name": "propertyName",
"attribute": "propertyName",
"description": "A type property name.\nThis may be different from `displayName` property if\n`displayName` was specified in the API spec for this property.",
"type": "string"
},
{
"name": "hasDisplayName",
"attribute": "hasDisplayName",
"description": "Computed value, true if `displayName` has been defined for this\nproperty.",
"type": "boolean"
},
{
"name": "isUnion",
"attribute": "isUnion",
"description": "Computed value, true if current property is an union.",
"type": "boolean"
},
{
"name": "isObject",
"attribute": "isObject",
"description": "Computed value, true if current property is an object.",
"type": "boolean"
},
{
"name": "isArray",
"attribute": "isArray",
"description": "Computed value, true if current property is an array.",
"type": "boolean"
},
{
"name": "isScalarArray",
"attribute": "isScalarArray",
"description": "Computed value, true if current property is an array and the item\nis a scalar.",
"type": "boolean"
},
{
"name": "isComplex",
"attribute": "isComplex",
"description": "Computed value, true if this property contains a complex\nstructure. It is computed when the property is and array,\nobject, or union.",
"type": "boolean"
},
{
"name": "parentTypeName",
"attribute": "parentTypeName",
"description": "Should be set if described properties has a parent type.\nThis is used when recursively iterating over properties.",
"type": "string"
},
{
"name": "hasParentTypeName",
"attribute": "hasParentTypeName",
"description": "Computed value, true if `parentTypeName` has a value.",
"type": "boolean"
},
{
"name": "propertyDataType",
"attribute": "propertyDataType",
"description": "Computed value of shape data type",
"type": "string"
},
{
"name": "isRequired",
"attribute": "isRequired",
"description": "Computed value form the shape. True if the property is required.",
"type": "boolean"
},
{
"name": "isEnum",
"attribute": "isEnum",
"description": "Computed value form the shape. True if the property is ENUM.",
"type": "boolean"
},
{
"name": "isReadOnly",
"attribute": "isReadOnly",
"description": "Computed value form the shape. True if the property is read only.",
"type": "boolean"
},
{
"name": "propertyDescription",
"attribute": "propertyDescription",
"description": "A description of the property to render.",
"type": "string"
},
{
"name": "hasPropertyDescription",
"attribute": "hasPropertyDescription",
"description": "Computed value, true if description is set.",
"type": "boolean"
},
{
"name": "narrow",
"attribute": "narrow",
"description": "A property to set when the component is rendered in the narrow\nview. To be used with mobile rendering or when the\ncomponents occupies only small part of the screen.",
"type": "boolean"
},
{
"name": "opened",
"attribute": "opened",
"description": "When `isComplex` is true this determines if the complex structure\nis currently rendered.",
"type": "boolean"
},
{
"name": "renderReadOnly",
"attribute": "renderReadOnly",
"type": "boolean"
},
{
"name": "complexToggleLabel",
"type": "string"
},
{
"name": "arrayScalarTypeName",
"type": "string"
},
{
"name": "shape",
"description": "A property shape definition of AMF."
},
{
"name": "range",
"description": "Computes value of shape's http://raml.org/vocabularies/shapes#range"
},
{
"name": "mediaType",
"attribute": "mediaType",
"description": "Type's current media type.\nThis is used to select/generate examples according to current body\nmedia type. When not set it only renders examples that were defined\nin API spec file in a form as they were written.",
"type": "string"
},
{
"name": "noExamplesActions",
"attribute": "noExamplesActions",
"description": "When set it removes actions bar from the examples render.",
"type": "boolean"
},
{
"name": "compatibility",
"attribute": "compatibility",
"description": "Enables compatibility with Anypoint components.",
"type": "boolean"
},
{
"name": "graph",
"attribute": "graph",
"description": "When enabled it renders external types as links and dispatches\n`api-navigation-selection-changed` when clicked.",
"type": "boolean"
},
{
"name": "ns",
"description": "A namespace for AMF model.",
"type": "Namespace"
},
{
"name": "amf",
"description": "Generated AMF json/ld model form the API spec.\nThe element assumes the object of the first array item to be a\ntype of `\"http://raml.org/vocabularies/document#Document`\non AMF vocabulary.\n\nIt is only useful for the element to resolve references.",
"type": "object | object[] | undefined"
}
]
}
]
}