-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcustom-elements.json
83 lines (83 loc) · 2.95 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
{
"version": "experimental",
"tags": [
{
"name": "api-headers-document",
"path": "./api-headers-document.js",
"description": "`api-headers-document`\n\nA documentation for API headers.\n\nIt uses [AMF](https://github.com/mulesoft/amf) json/ld model to render\nthe view.\n\n## Example\n\n```html\n<api-headers-document headers=\"[...]\" opened></api-headers-document>",
"attributes": [
{
"name": "opened",
"description": "Set to true to open the view.\nAutomatically set when the view is toggle from the UI.",
"type": "boolean"
},
{
"name": "narrow",
"description": "A property passed to the type document element to render a mobile friendly view.",
"type": "boolean"
},
{
"name": "compatibility",
"description": "Enables compatibility with Anypoint components.",
"type": "boolean"
},
{
"name": "headerLevel",
"description": "Type of the header in the documentation section.\nShould be in range of 1 to 6.",
"type": "number",
"default": "\"2\""
},
{
"name": "graph",
"description": "Passed to `api-type-document`. Enables internal links rendering for types.",
"type": "boolean"
}
],
"properties": [
{
"name": "styles",
"type": "CSSResult"
},
{
"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."
},
{
"name": "headers",
"description": "The headers AMF model Array."
},
{
"name": "opened",
"attribute": "opened",
"description": "Set to true to open the view.\nAutomatically set when the view is toggle from the UI.",
"type": "boolean"
},
{
"name": "narrow",
"attribute": "narrow",
"description": "A property passed to the type document element to render a mobile friendly view.",
"type": "boolean"
},
{
"name": "compatibility",
"attribute": "compatibility",
"description": "Enables compatibility with Anypoint components.",
"type": "boolean"
},
{
"name": "headerLevel",
"attribute": "headerLevel",
"description": "Type of the header in the documentation section.\nShould be in range of 1 to 6.",
"type": "number",
"default": "\"2\""
},
{
"name": "graph",
"attribute": "graph",
"description": "Passed to `api-type-document`. Enables internal links rendering for types.",
"type": "boolean"
}
]
}
]
}