2015-09-30 04:13:23 -04:00
|
|
|
{% include "lib/githubLinks.html" -%}
|
|
|
|
{% include "lib/paramList.html" -%}
|
|
|
|
{% extends 'class.template.html' -%}
|
|
|
|
|
2015-11-13 06:40:00 -05:00
|
|
|
{% block annotations %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
2015-11-10 06:36:46 -05:00
|
|
|
{% block additional -%}
|
2015-09-30 04:13:23 -04:00
|
|
|
.l-main-section
|
2015-11-03 09:40:42 -05:00
|
|
|
h2 Selectors
|
2015-11-10 13:34:23 -05:00
|
|
|
.l-sub-section{% for selector in doc.directiveOptions.selector.split(',') %}
|
2015-09-30 04:13:23 -04:00
|
|
|
h3.selector
|
2015-11-10 13:34:23 -05:00
|
|
|
code {$ selector $}{% endfor %}
|
2015-09-30 04:13:23 -04:00
|
|
|
|
2015-11-03 18:32:56 -05:00
|
|
|
{% if doc.inputs %}
|
2015-09-30 04:13:23 -04:00
|
|
|
.l-main-section
|
|
|
|
h2 Inputs
|
2015-11-03 18:32:56 -05:00
|
|
|
.l-sub-section{% for binding, property in doc.inputs %}
|
|
|
|
h3.input
|
2016-01-10 13:23:57 -05:00
|
|
|
code {$ property.bindingName $}
|
2015-09-30 04:13:23 -04:00
|
|
|
| bound to
|
|
|
|
code {$ property.memberDoc.classDoc.name $}.{$ property.propertyName $}
|
2015-11-10 13:31:46 -05:00
|
|
|
:marked
|
2015-11-10 06:36:46 -05:00
|
|
|
{$ property.memberDoc.description | indentForMarkdown(2) | trimBlankLines $}{% endfor %}
|
2015-11-03 09:40:42 -05:00
|
|
|
{% endif %}
|
2015-09-30 04:13:23 -04:00
|
|
|
|
2015-11-03 18:32:56 -05:00
|
|
|
{% if doc.outputs %}
|
2015-09-30 04:13:23 -04:00
|
|
|
.l-main-section
|
|
|
|
h2 Outputs
|
2015-11-03 18:32:56 -05:00
|
|
|
.l-sub-section{% for binding, property in doc.outputs %}
|
|
|
|
h3.output
|
2016-01-10 13:23:57 -05:00
|
|
|
code {$ property.bindingName $}
|
2015-09-30 04:13:23 -04:00
|
|
|
| bound to
|
|
|
|
code {$ property.memberDoc.classDoc.name $}.{$ property.propertyName $}
|
2015-11-10 13:31:46 -05:00
|
|
|
:marked
|
2015-09-30 04:13:23 -04:00
|
|
|
{$ event.memberDoc.description | indentForMarkdown(2) | trimBlankLines $}
|
2015-11-03 09:40:42 -05:00
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
2015-11-13 06:53:45 -05:00
|
|
|
|
|
|
|
{% if doc.directiveOptions.exportAs %}
|
|
|
|
.l-main-section
|
|
|
|
h2 Exported As
|
|
|
|
.l-sub-section
|
|
|
|
h3.export-as
|
|
|
|
code {$ doc.directiveOptions.exportAs $}
|
|
|
|
{% endif %}
|
2015-09-30 04:13:23 -04:00
|
|
|
{% endblock %}
|